tencentcloud-sdk-python 3.0.1082__py2.py3-none-any.whl → 3.0.1083__py2.py3-none-any.whl
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.
Potentially problematic release.
This version of tencentcloud-sdk-python might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/ccc/v20200210/ccc_client.py +1 -1
- tencentcloud/ess/v20201111/ess_client.py +2 -2
- tencentcloud/ess/v20201111/models.py +24 -15
- tencentcloud/essbasic/v20210526/essbasic_client.py +11 -3
- tencentcloud/essbasic/v20210526/models.py +68 -5
- tencentcloud/iss/v20230517/models.py +4 -2
- tencentcloud/monitor/v20180724/models.py +2 -1
- tencentcloud/mps/v20190612/errorcodes.py +3 -0
- tencentcloud/mps/v20190612/models.py +55 -17
- tencentcloud/mps/v20190612/mps_client.py +2 -1
- tencentcloud/ocr/v20181119/models.py +473 -0
- tencentcloud/ocr/v20181119/ocr_client.py +74 -0
- tencentcloud/tag/v20180813/models.py +24 -0
- tencentcloud/teo/v20220901/errorcodes.py +15 -0
- tencentcloud/teo/v20220901/models.py +2165 -665
- tencentcloud/teo/v20220901/teo_client.py +230 -0
- tencentcloud/waf/v20180125/errorcodes.py +3 -0
- tencentcloud/waf/v20180125/models.py +82 -0
- tencentcloud/waf/v20180125/waf_client.py +23 -0
- tencentcloud/wedata/v20210820/errorcodes.py +18 -0
- tencentcloud/wedata/v20210820/models.py +11244 -1118
- tencentcloud/wedata/v20210820/wedata_client.py +1648 -37
- {tencentcloud_sdk_python-3.0.1082.dist-info → tencentcloud_sdk_python-3.0.1083.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1082.dist-info → tencentcloud_sdk_python-3.0.1083.dist-info}/RECORD +28 -28
- {tencentcloud_sdk_python-3.0.1082.dist-info → tencentcloud_sdk_python-3.0.1083.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1082.dist-info → tencentcloud_sdk_python-3.0.1083.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1082.dist-info → tencentcloud_sdk_python-3.0.1083.dist-info}/top_level.txt +0 -0
|
@@ -699,6 +699,29 @@ class WedataClient(AbstractClient):
|
|
|
699
699
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
700
700
|
|
|
701
701
|
|
|
702
|
+
def CheckCustomFunctionPremise(self, request):
|
|
703
|
+
"""新建用户自定义函数组件检查
|
|
704
|
+
|
|
705
|
+
:param request: Request instance for CheckCustomFunctionPremise.
|
|
706
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.CheckCustomFunctionPremiseRequest`
|
|
707
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.CheckCustomFunctionPremiseResponse`
|
|
708
|
+
|
|
709
|
+
"""
|
|
710
|
+
try:
|
|
711
|
+
params = request._serialize()
|
|
712
|
+
headers = request.headers
|
|
713
|
+
body = self.call("CheckCustomFunctionPremise", params, headers=headers)
|
|
714
|
+
response = json.loads(body)
|
|
715
|
+
model = models.CheckCustomFunctionPremiseResponse()
|
|
716
|
+
model._deserialize(response["Response"])
|
|
717
|
+
return model
|
|
718
|
+
except Exception as e:
|
|
719
|
+
if isinstance(e, TencentCloudSDKException):
|
|
720
|
+
raise
|
|
721
|
+
else:
|
|
722
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
723
|
+
|
|
724
|
+
|
|
702
725
|
def CheckDuplicateRuleName(self, request):
|
|
703
726
|
"""检查规则名称是否重复
|
|
704
727
|
|
|
@@ -860,6 +883,29 @@ class WedataClient(AbstractClient):
|
|
|
860
883
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
861
884
|
|
|
862
885
|
|
|
886
|
+
def ClearRecycleTask(self, request):
|
|
887
|
+
"""清空回收站任务
|
|
888
|
+
|
|
889
|
+
:param request: Request instance for ClearRecycleTask.
|
|
890
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.ClearRecycleTaskRequest`
|
|
891
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.ClearRecycleTaskResponse`
|
|
892
|
+
|
|
893
|
+
"""
|
|
894
|
+
try:
|
|
895
|
+
params = request._serialize()
|
|
896
|
+
headers = request.headers
|
|
897
|
+
body = self.call("ClearRecycleTask", params, headers=headers)
|
|
898
|
+
response = json.loads(body)
|
|
899
|
+
model = models.ClearRecycleTaskResponse()
|
|
900
|
+
model._deserialize(response["Response"])
|
|
901
|
+
return model
|
|
902
|
+
except Exception as e:
|
|
903
|
+
if isinstance(e, TencentCloudSDKException):
|
|
904
|
+
raise
|
|
905
|
+
else:
|
|
906
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
907
|
+
|
|
908
|
+
|
|
863
909
|
def CommitExportTask(self, request):
|
|
864
910
|
"""提交数据导出任务
|
|
865
911
|
|
|
@@ -952,6 +998,52 @@ class WedataClient(AbstractClient):
|
|
|
952
998
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
953
999
|
|
|
954
1000
|
|
|
1001
|
+
def CommitWorkflow(self, request):
|
|
1002
|
+
"""工作流版本提交
|
|
1003
|
+
|
|
1004
|
+
:param request: Request instance for CommitWorkflow.
|
|
1005
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.CommitWorkflowRequest`
|
|
1006
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.CommitWorkflowResponse`
|
|
1007
|
+
|
|
1008
|
+
"""
|
|
1009
|
+
try:
|
|
1010
|
+
params = request._serialize()
|
|
1011
|
+
headers = request.headers
|
|
1012
|
+
body = self.call("CommitWorkflow", params, headers=headers)
|
|
1013
|
+
response = json.loads(body)
|
|
1014
|
+
model = models.CommitWorkflowResponse()
|
|
1015
|
+
model._deserialize(response["Response"])
|
|
1016
|
+
return model
|
|
1017
|
+
except Exception as e:
|
|
1018
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1019
|
+
raise
|
|
1020
|
+
else:
|
|
1021
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1022
|
+
|
|
1023
|
+
|
|
1024
|
+
def CompareDsTaskVersionInfo(self, request):
|
|
1025
|
+
"""对比任务版本
|
|
1026
|
+
|
|
1027
|
+
:param request: Request instance for CompareDsTaskVersionInfo.
|
|
1028
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.CompareDsTaskVersionInfoRequest`
|
|
1029
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.CompareDsTaskVersionInfoResponse`
|
|
1030
|
+
|
|
1031
|
+
"""
|
|
1032
|
+
try:
|
|
1033
|
+
params = request._serialize()
|
|
1034
|
+
headers = request.headers
|
|
1035
|
+
body = self.call("CompareDsTaskVersionInfo", params, headers=headers)
|
|
1036
|
+
response = json.loads(body)
|
|
1037
|
+
model = models.CompareDsTaskVersionInfoResponse()
|
|
1038
|
+
model._deserialize(response["Response"])
|
|
1039
|
+
return model
|
|
1040
|
+
except Exception as e:
|
|
1041
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1042
|
+
raise
|
|
1043
|
+
else:
|
|
1044
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1045
|
+
|
|
1046
|
+
|
|
955
1047
|
def CopyTaskDs(self, request):
|
|
956
1048
|
"""复制任务Ds
|
|
957
1049
|
|
|
@@ -975,6 +1067,29 @@ class WedataClient(AbstractClient):
|
|
|
975
1067
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
976
1068
|
|
|
977
1069
|
|
|
1070
|
+
def CopyWorkflowDs(self, request):
|
|
1071
|
+
"""复制工作流
|
|
1072
|
+
|
|
1073
|
+
:param request: Request instance for CopyWorkflowDs.
|
|
1074
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.CopyWorkflowDsRequest`
|
|
1075
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.CopyWorkflowDsResponse`
|
|
1076
|
+
|
|
1077
|
+
"""
|
|
1078
|
+
try:
|
|
1079
|
+
params = request._serialize()
|
|
1080
|
+
headers = request.headers
|
|
1081
|
+
body = self.call("CopyWorkflowDs", params, headers=headers)
|
|
1082
|
+
response = json.loads(body)
|
|
1083
|
+
model = models.CopyWorkflowDsResponse()
|
|
1084
|
+
model._deserialize(response["Response"])
|
|
1085
|
+
return model
|
|
1086
|
+
except Exception as e:
|
|
1087
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1088
|
+
raise
|
|
1089
|
+
else:
|
|
1090
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1091
|
+
|
|
1092
|
+
|
|
978
1093
|
def CountOpsInstanceState(self, request):
|
|
979
1094
|
"""统计任务实例状态
|
|
980
1095
|
|
|
@@ -1021,6 +1136,29 @@ class WedataClient(AbstractClient):
|
|
|
1021
1136
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1022
1137
|
|
|
1023
1138
|
|
|
1139
|
+
def CreateBrowsingHistory(self, request):
|
|
1140
|
+
"""创建用户数据开发浏览历史
|
|
1141
|
+
|
|
1142
|
+
:param request: Request instance for CreateBrowsingHistory.
|
|
1143
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.CreateBrowsingHistoryRequest`
|
|
1144
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.CreateBrowsingHistoryResponse`
|
|
1145
|
+
|
|
1146
|
+
"""
|
|
1147
|
+
try:
|
|
1148
|
+
params = request._serialize()
|
|
1149
|
+
headers = request.headers
|
|
1150
|
+
body = self.call("CreateBrowsingHistory", params, headers=headers)
|
|
1151
|
+
response = json.loads(body)
|
|
1152
|
+
model = models.CreateBrowsingHistoryResponse()
|
|
1153
|
+
model._deserialize(response["Response"])
|
|
1154
|
+
return model
|
|
1155
|
+
except Exception as e:
|
|
1156
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1157
|
+
raise
|
|
1158
|
+
else:
|
|
1159
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1160
|
+
|
|
1161
|
+
|
|
1024
1162
|
def CreateCustomFunction(self, request):
|
|
1025
1163
|
"""创建用户自定义函数
|
|
1026
1164
|
|
|
@@ -1253,6 +1391,29 @@ class WedataClient(AbstractClient):
|
|
|
1253
1391
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1254
1392
|
|
|
1255
1393
|
|
|
1394
|
+
def CreateLink(self, request):
|
|
1395
|
+
"""创建任务连接
|
|
1396
|
+
|
|
1397
|
+
:param request: Request instance for CreateLink.
|
|
1398
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.CreateLinkRequest`
|
|
1399
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.CreateLinkResponse`
|
|
1400
|
+
|
|
1401
|
+
"""
|
|
1402
|
+
try:
|
|
1403
|
+
params = request._serialize()
|
|
1404
|
+
headers = request.headers
|
|
1405
|
+
body = self.call("CreateLink", params, headers=headers)
|
|
1406
|
+
response = json.loads(body)
|
|
1407
|
+
model = models.CreateLinkResponse()
|
|
1408
|
+
model._deserialize(response["Response"])
|
|
1409
|
+
return model
|
|
1410
|
+
except Exception as e:
|
|
1411
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1412
|
+
raise
|
|
1413
|
+
else:
|
|
1414
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1415
|
+
|
|
1416
|
+
|
|
1256
1417
|
def CreateOfflineTask(self, request):
|
|
1257
1418
|
"""创建离线任务
|
|
1258
1419
|
|
|
@@ -1368,6 +1529,29 @@ class WedataClient(AbstractClient):
|
|
|
1368
1529
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1369
1530
|
|
|
1370
1531
|
|
|
1532
|
+
def CreateResourceDirectory(self, request):
|
|
1533
|
+
"""资源管理-创建资源目录
|
|
1534
|
+
|
|
1535
|
+
:param request: Request instance for CreateResourceDirectory.
|
|
1536
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.CreateResourceDirectoryRequest`
|
|
1537
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.CreateResourceDirectoryResponse`
|
|
1538
|
+
|
|
1539
|
+
"""
|
|
1540
|
+
try:
|
|
1541
|
+
params = request._serialize()
|
|
1542
|
+
headers = request.headers
|
|
1543
|
+
body = self.call("CreateResourceDirectory", params, headers=headers)
|
|
1544
|
+
response = json.loads(body)
|
|
1545
|
+
model = models.CreateResourceDirectoryResponse()
|
|
1546
|
+
model._deserialize(response["Response"])
|
|
1547
|
+
return model
|
|
1548
|
+
except Exception as e:
|
|
1549
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1550
|
+
raise
|
|
1551
|
+
else:
|
|
1552
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1553
|
+
|
|
1554
|
+
|
|
1371
1555
|
def CreateResourcePath(self, request):
|
|
1372
1556
|
"""文件路径的根目录为 /datastudio/resource,如果要在根目录下创建 aaa 文件夹,FilePath的值应该为 /datastudio/resource,如果根目录下已经创建了 aaa 文件夹,要在 aaa 下创建 bbb 文件夹,FilePath的值应该为 /datastudio/resource/aaa
|
|
1373
1557
|
|
|
@@ -1715,6 +1899,29 @@ class WedataClient(AbstractClient):
|
|
|
1715
1899
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1716
1900
|
|
|
1717
1901
|
|
|
1902
|
+
def CreateWorkflowDs(self, request):
|
|
1903
|
+
"""创建工作流
|
|
1904
|
+
|
|
1905
|
+
:param request: Request instance for CreateWorkflowDs.
|
|
1906
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.CreateWorkflowDsRequest`
|
|
1907
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.CreateWorkflowDsResponse`
|
|
1908
|
+
|
|
1909
|
+
"""
|
|
1910
|
+
try:
|
|
1911
|
+
params = request._serialize()
|
|
1912
|
+
headers = request.headers
|
|
1913
|
+
body = self.call("CreateWorkflowDs", params, headers=headers)
|
|
1914
|
+
response = json.loads(body)
|
|
1915
|
+
model = models.CreateWorkflowDsResponse()
|
|
1916
|
+
model._deserialize(response["Response"])
|
|
1917
|
+
return model
|
|
1918
|
+
except Exception as e:
|
|
1919
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1920
|
+
raise
|
|
1921
|
+
else:
|
|
1922
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1923
|
+
|
|
1924
|
+
|
|
1718
1925
|
def DagInstances(self, request):
|
|
1719
1926
|
"""拉取dag实例
|
|
1720
1927
|
|
|
@@ -1761,6 +1968,29 @@ class WedataClient(AbstractClient):
|
|
|
1761
1968
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1762
1969
|
|
|
1763
1970
|
|
|
1971
|
+
def DeleteBatchWorkflowDs(self, request):
|
|
1972
|
+
"""批量删除工作流
|
|
1973
|
+
|
|
1974
|
+
:param request: Request instance for DeleteBatchWorkflowDs.
|
|
1975
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DeleteBatchWorkflowDsRequest`
|
|
1976
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DeleteBatchWorkflowDsResponse`
|
|
1977
|
+
|
|
1978
|
+
"""
|
|
1979
|
+
try:
|
|
1980
|
+
params = request._serialize()
|
|
1981
|
+
headers = request.headers
|
|
1982
|
+
body = self.call("DeleteBatchWorkflowDs", params, headers=headers)
|
|
1983
|
+
response = json.loads(body)
|
|
1984
|
+
model = models.DeleteBatchWorkflowDsResponse()
|
|
1985
|
+
model._deserialize(response["Response"])
|
|
1986
|
+
return model
|
|
1987
|
+
except Exception as e:
|
|
1988
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1989
|
+
raise
|
|
1990
|
+
else:
|
|
1991
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1992
|
+
|
|
1993
|
+
|
|
1764
1994
|
def DeleteCustomFunction(self, request):
|
|
1765
1995
|
"""删除用户自定义函数
|
|
1766
1996
|
|
|
@@ -1808,6 +2038,29 @@ class WedataClient(AbstractClient):
|
|
|
1808
2038
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1809
2039
|
|
|
1810
2040
|
|
|
2041
|
+
def DeleteDsEvent(self, request):
|
|
2042
|
+
"""删除事件
|
|
2043
|
+
|
|
2044
|
+
:param request: Request instance for DeleteDsEvent.
|
|
2045
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DeleteDsEventRequest`
|
|
2046
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DeleteDsEventResponse`
|
|
2047
|
+
|
|
2048
|
+
"""
|
|
2049
|
+
try:
|
|
2050
|
+
params = request._serialize()
|
|
2051
|
+
headers = request.headers
|
|
2052
|
+
body = self.call("DeleteDsEvent", params, headers=headers)
|
|
2053
|
+
response = json.loads(body)
|
|
2054
|
+
model = models.DeleteDsEventResponse()
|
|
2055
|
+
model._deserialize(response["Response"])
|
|
2056
|
+
return model
|
|
2057
|
+
except Exception as e:
|
|
2058
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2059
|
+
raise
|
|
2060
|
+
else:
|
|
2061
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2062
|
+
|
|
2063
|
+
|
|
1811
2064
|
def DeleteDsEventListener(self, request):
|
|
1812
2065
|
"""删除事件监听者
|
|
1813
2066
|
|
|
@@ -1877,6 +2130,29 @@ class WedataClient(AbstractClient):
|
|
|
1877
2130
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1878
2131
|
|
|
1879
2132
|
|
|
2133
|
+
def DeleteEventListenerByTaskId(self, request):
|
|
2134
|
+
"""通过任务ID删除所有事件
|
|
2135
|
+
|
|
2136
|
+
:param request: Request instance for DeleteEventListenerByTaskId.
|
|
2137
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DeleteEventListenerByTaskIdRequest`
|
|
2138
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DeleteEventListenerByTaskIdResponse`
|
|
2139
|
+
|
|
2140
|
+
"""
|
|
2141
|
+
try:
|
|
2142
|
+
params = request._serialize()
|
|
2143
|
+
headers = request.headers
|
|
2144
|
+
body = self.call("DeleteEventListenerByTaskId", params, headers=headers)
|
|
2145
|
+
response = json.loads(body)
|
|
2146
|
+
model = models.DeleteEventListenerByTaskIdResponse()
|
|
2147
|
+
model._deserialize(response["Response"])
|
|
2148
|
+
return model
|
|
2149
|
+
except Exception as e:
|
|
2150
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2151
|
+
raise
|
|
2152
|
+
else:
|
|
2153
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2154
|
+
|
|
2155
|
+
|
|
1880
2156
|
def DeleteFile(self, request):
|
|
1881
2157
|
"""删除文件
|
|
1882
2158
|
|
|
@@ -2131,6 +2407,52 @@ class WedataClient(AbstractClient):
|
|
|
2131
2407
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2132
2408
|
|
|
2133
2409
|
|
|
2410
|
+
def DeleteRecordList(self, request):
|
|
2411
|
+
"""批量删除任务提交记录列表
|
|
2412
|
+
|
|
2413
|
+
:param request: Request instance for DeleteRecordList.
|
|
2414
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DeleteRecordListRequest`
|
|
2415
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DeleteRecordListResponse`
|
|
2416
|
+
|
|
2417
|
+
"""
|
|
2418
|
+
try:
|
|
2419
|
+
params = request._serialize()
|
|
2420
|
+
headers = request.headers
|
|
2421
|
+
body = self.call("DeleteRecordList", params, headers=headers)
|
|
2422
|
+
response = json.loads(body)
|
|
2423
|
+
model = models.DeleteRecordListResponse()
|
|
2424
|
+
model._deserialize(response["Response"])
|
|
2425
|
+
return model
|
|
2426
|
+
except Exception as e:
|
|
2427
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2428
|
+
raise
|
|
2429
|
+
else:
|
|
2430
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2431
|
+
|
|
2432
|
+
|
|
2433
|
+
def DeleteRecycleTask(self, request):
|
|
2434
|
+
"""删除回收站任务
|
|
2435
|
+
|
|
2436
|
+
:param request: Request instance for DeleteRecycleTask.
|
|
2437
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DeleteRecycleTaskRequest`
|
|
2438
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DeleteRecycleTaskResponse`
|
|
2439
|
+
|
|
2440
|
+
"""
|
|
2441
|
+
try:
|
|
2442
|
+
params = request._serialize()
|
|
2443
|
+
headers = request.headers
|
|
2444
|
+
body = self.call("DeleteRecycleTask", params, headers=headers)
|
|
2445
|
+
response = json.loads(body)
|
|
2446
|
+
model = models.DeleteRecycleTaskResponse()
|
|
2447
|
+
model._deserialize(response["Response"])
|
|
2448
|
+
return model
|
|
2449
|
+
except Exception as e:
|
|
2450
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2451
|
+
raise
|
|
2452
|
+
else:
|
|
2453
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2454
|
+
|
|
2455
|
+
|
|
2134
2456
|
def DeleteResource(self, request):
|
|
2135
2457
|
"""资源管理删除资源
|
|
2136
2458
|
|
|
@@ -2200,6 +2522,29 @@ class WedataClient(AbstractClient):
|
|
|
2200
2522
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2201
2523
|
|
|
2202
2524
|
|
|
2525
|
+
def DeleteResourcePath(self, request):
|
|
2526
|
+
"""资源管理-删除资源目录
|
|
2527
|
+
|
|
2528
|
+
:param request: Request instance for DeleteResourcePath.
|
|
2529
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DeleteResourcePathRequest`
|
|
2530
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DeleteResourcePathResponse`
|
|
2531
|
+
|
|
2532
|
+
"""
|
|
2533
|
+
try:
|
|
2534
|
+
params = request._serialize()
|
|
2535
|
+
headers = request.headers
|
|
2536
|
+
body = self.call("DeleteResourcePath", params, headers=headers)
|
|
2537
|
+
response = json.loads(body)
|
|
2538
|
+
model = models.DeleteResourcePathResponse()
|
|
2539
|
+
model._deserialize(response["Response"])
|
|
2540
|
+
return model
|
|
2541
|
+
except Exception as e:
|
|
2542
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2543
|
+
raise
|
|
2544
|
+
else:
|
|
2545
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2546
|
+
|
|
2547
|
+
|
|
2203
2548
|
def DeleteRule(self, request):
|
|
2204
2549
|
"""删除质量规则接口
|
|
2205
2550
|
|
|
@@ -2500,6 +2845,29 @@ class WedataClient(AbstractClient):
|
|
|
2500
2845
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2501
2846
|
|
|
2502
2847
|
|
|
2848
|
+
def DescribeAllParamDs(self, request):
|
|
2849
|
+
"""查询所有参数
|
|
2850
|
+
|
|
2851
|
+
:param request: Request instance for DescribeAllParamDs.
|
|
2852
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeAllParamDsRequest`
|
|
2853
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeAllParamDsResponse`
|
|
2854
|
+
|
|
2855
|
+
"""
|
|
2856
|
+
try:
|
|
2857
|
+
params = request._serialize()
|
|
2858
|
+
headers = request.headers
|
|
2859
|
+
body = self.call("DescribeAllParamDs", params, headers=headers)
|
|
2860
|
+
response = json.loads(body)
|
|
2861
|
+
model = models.DescribeAllParamDsResponse()
|
|
2862
|
+
model._deserialize(response["Response"])
|
|
2863
|
+
return model
|
|
2864
|
+
except Exception as e:
|
|
2865
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2866
|
+
raise
|
|
2867
|
+
else:
|
|
2868
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2869
|
+
|
|
2870
|
+
|
|
2503
2871
|
def DescribeAllTaskType(self, request):
|
|
2504
2872
|
"""获取所有任务类型
|
|
2505
2873
|
|
|
@@ -2753,6 +3121,29 @@ class WedataClient(AbstractClient):
|
|
|
2753
3121
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2754
3122
|
|
|
2755
3123
|
|
|
3124
|
+
def DescribeBatchTestRun(self, request):
|
|
3125
|
+
"""批量获取etl测试运行任务执行状态和日志
|
|
3126
|
+
|
|
3127
|
+
:param request: Request instance for DescribeBatchTestRun.
|
|
3128
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeBatchTestRunRequest`
|
|
3129
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeBatchTestRunResponse`
|
|
3130
|
+
|
|
3131
|
+
"""
|
|
3132
|
+
try:
|
|
3133
|
+
params = request._serialize()
|
|
3134
|
+
headers = request.headers
|
|
3135
|
+
body = self.call("DescribeBatchTestRun", params, headers=headers)
|
|
3136
|
+
response = json.loads(body)
|
|
3137
|
+
model = models.DescribeBatchTestRunResponse()
|
|
3138
|
+
model._deserialize(response["Response"])
|
|
3139
|
+
return model
|
|
3140
|
+
except Exception as e:
|
|
3141
|
+
if isinstance(e, TencentCloudSDKException):
|
|
3142
|
+
raise
|
|
3143
|
+
else:
|
|
3144
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
3145
|
+
|
|
3146
|
+
|
|
2756
3147
|
def DescribeBelongTo(self, request):
|
|
2757
3148
|
"""智能运维-事件列表-所属任务/基线过滤列表
|
|
2758
3149
|
|
|
@@ -3098,6 +3489,29 @@ class WedataClient(AbstractClient):
|
|
|
3098
3489
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
3099
3490
|
|
|
3100
3491
|
|
|
3492
|
+
def DescribeCustomFunctionVersionList(self, request):
|
|
3493
|
+
"""查询函数版本列表
|
|
3494
|
+
|
|
3495
|
+
:param request: Request instance for DescribeCustomFunctionVersionList.
|
|
3496
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeCustomFunctionVersionListRequest`
|
|
3497
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeCustomFunctionVersionListResponse`
|
|
3498
|
+
|
|
3499
|
+
"""
|
|
3500
|
+
try:
|
|
3501
|
+
params = request._serialize()
|
|
3502
|
+
headers = request.headers
|
|
3503
|
+
body = self.call("DescribeCustomFunctionVersionList", params, headers=headers)
|
|
3504
|
+
response = json.loads(body)
|
|
3505
|
+
model = models.DescribeCustomFunctionVersionListResponse()
|
|
3506
|
+
model._deserialize(response["Response"])
|
|
3507
|
+
return model
|
|
3508
|
+
except Exception as e:
|
|
3509
|
+
if isinstance(e, TencentCloudSDKException):
|
|
3510
|
+
raise
|
|
3511
|
+
else:
|
|
3512
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
3513
|
+
|
|
3514
|
+
|
|
3101
3515
|
def DescribeDataBases(self, request):
|
|
3102
3516
|
"""查询数据来源列表
|
|
3103
3517
|
|
|
@@ -3261,6 +3675,29 @@ class WedataClient(AbstractClient):
|
|
|
3261
3675
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
3262
3676
|
|
|
3263
3677
|
|
|
3678
|
+
def DescribeDataTableImportProgress(self, request):
|
|
3679
|
+
"""获取数据表导入状态
|
|
3680
|
+
|
|
3681
|
+
:param request: Request instance for DescribeDataTableImportProgress.
|
|
3682
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeDataTableImportProgressRequest`
|
|
3683
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeDataTableImportProgressResponse`
|
|
3684
|
+
|
|
3685
|
+
"""
|
|
3686
|
+
try:
|
|
3687
|
+
params = request._serialize()
|
|
3688
|
+
headers = request.headers
|
|
3689
|
+
body = self.call("DescribeDataTableImportProgress", params, headers=headers)
|
|
3690
|
+
response = json.loads(body)
|
|
3691
|
+
model = models.DescribeDataTableImportProgressResponse()
|
|
3692
|
+
model._deserialize(response["Response"])
|
|
3693
|
+
return model
|
|
3694
|
+
except Exception as e:
|
|
3695
|
+
if isinstance(e, TencentCloudSDKException):
|
|
3696
|
+
raise
|
|
3697
|
+
else:
|
|
3698
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
3699
|
+
|
|
3700
|
+
|
|
3264
3701
|
def DescribeDataTypes(self, request):
|
|
3265
3702
|
"""获取字段类型列表
|
|
3266
3703
|
|
|
@@ -3677,6 +4114,121 @@ class WedataClient(AbstractClient):
|
|
|
3677
4114
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
3678
4115
|
|
|
3679
4116
|
|
|
4117
|
+
def DescribeDsEventDetail(self, request):
|
|
4118
|
+
"""事件管理-查询事件详情
|
|
4119
|
+
|
|
4120
|
+
:param request: Request instance for DescribeDsEventDetail.
|
|
4121
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeDsEventDetailRequest`
|
|
4122
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeDsEventDetailResponse`
|
|
4123
|
+
|
|
4124
|
+
"""
|
|
4125
|
+
try:
|
|
4126
|
+
params = request._serialize()
|
|
4127
|
+
headers = request.headers
|
|
4128
|
+
body = self.call("DescribeDsEventDetail", params, headers=headers)
|
|
4129
|
+
response = json.loads(body)
|
|
4130
|
+
model = models.DescribeDsEventDetailResponse()
|
|
4131
|
+
model._deserialize(response["Response"])
|
|
4132
|
+
return model
|
|
4133
|
+
except Exception as e:
|
|
4134
|
+
if isinstance(e, TencentCloudSDKException):
|
|
4135
|
+
raise
|
|
4136
|
+
else:
|
|
4137
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4138
|
+
|
|
4139
|
+
|
|
4140
|
+
def DescribeDsEventListener(self, request):
|
|
4141
|
+
"""查询事件监听者信息
|
|
4142
|
+
|
|
4143
|
+
:param request: Request instance for DescribeDsEventListener.
|
|
4144
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeDsEventListenerRequest`
|
|
4145
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeDsEventListenerResponse`
|
|
4146
|
+
|
|
4147
|
+
"""
|
|
4148
|
+
try:
|
|
4149
|
+
params = request._serialize()
|
|
4150
|
+
headers = request.headers
|
|
4151
|
+
body = self.call("DescribeDsEventListener", params, headers=headers)
|
|
4152
|
+
response = json.loads(body)
|
|
4153
|
+
model = models.DescribeDsEventListenerResponse()
|
|
4154
|
+
model._deserialize(response["Response"])
|
|
4155
|
+
return model
|
|
4156
|
+
except Exception as e:
|
|
4157
|
+
if isinstance(e, TencentCloudSDKException):
|
|
4158
|
+
raise
|
|
4159
|
+
else:
|
|
4160
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4161
|
+
|
|
4162
|
+
|
|
4163
|
+
def DescribeDsEventListenerList(self, request):
|
|
4164
|
+
"""查询事件监听者列表
|
|
4165
|
+
|
|
4166
|
+
:param request: Request instance for DescribeDsEventListenerList.
|
|
4167
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeDsEventListenerListRequest`
|
|
4168
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeDsEventListenerListResponse`
|
|
4169
|
+
|
|
4170
|
+
"""
|
|
4171
|
+
try:
|
|
4172
|
+
params = request._serialize()
|
|
4173
|
+
headers = request.headers
|
|
4174
|
+
body = self.call("DescribeDsEventListenerList", params, headers=headers)
|
|
4175
|
+
response = json.loads(body)
|
|
4176
|
+
model = models.DescribeDsEventListenerListResponse()
|
|
4177
|
+
model._deserialize(response["Response"])
|
|
4178
|
+
return model
|
|
4179
|
+
except Exception as e:
|
|
4180
|
+
if isinstance(e, TencentCloudSDKException):
|
|
4181
|
+
raise
|
|
4182
|
+
else:
|
|
4183
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4184
|
+
|
|
4185
|
+
|
|
4186
|
+
def DescribeDsEventPublisher(self, request):
|
|
4187
|
+
"""查询事件发布者信息
|
|
4188
|
+
|
|
4189
|
+
:param request: Request instance for DescribeDsEventPublisher.
|
|
4190
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeDsEventPublisherRequest`
|
|
4191
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeDsEventPublisherResponse`
|
|
4192
|
+
|
|
4193
|
+
"""
|
|
4194
|
+
try:
|
|
4195
|
+
params = request._serialize()
|
|
4196
|
+
headers = request.headers
|
|
4197
|
+
body = self.call("DescribeDsEventPublisher", params, headers=headers)
|
|
4198
|
+
response = json.loads(body)
|
|
4199
|
+
model = models.DescribeDsEventPublisherResponse()
|
|
4200
|
+
model._deserialize(response["Response"])
|
|
4201
|
+
return model
|
|
4202
|
+
except Exception as e:
|
|
4203
|
+
if isinstance(e, TencentCloudSDKException):
|
|
4204
|
+
raise
|
|
4205
|
+
else:
|
|
4206
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4207
|
+
|
|
4208
|
+
|
|
4209
|
+
def DescribeDsEventPublisherList(self, request):
|
|
4210
|
+
"""查询事件发布者列表
|
|
4211
|
+
|
|
4212
|
+
:param request: Request instance for DescribeDsEventPublisherList.
|
|
4213
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeDsEventPublisherListRequest`
|
|
4214
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeDsEventPublisherListResponse`
|
|
4215
|
+
|
|
4216
|
+
"""
|
|
4217
|
+
try:
|
|
4218
|
+
params = request._serialize()
|
|
4219
|
+
headers = request.headers
|
|
4220
|
+
body = self.call("DescribeDsEventPublisherList", params, headers=headers)
|
|
4221
|
+
response = json.loads(body)
|
|
4222
|
+
model = models.DescribeDsEventPublisherListResponse()
|
|
4223
|
+
model._deserialize(response["Response"])
|
|
4224
|
+
return model
|
|
4225
|
+
except Exception as e:
|
|
4226
|
+
if isinstance(e, TencentCloudSDKException):
|
|
4227
|
+
raise
|
|
4228
|
+
else:
|
|
4229
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4230
|
+
|
|
4231
|
+
|
|
3680
4232
|
def DescribeDsFolderTree(self, request):
|
|
3681
4233
|
"""查询目录树
|
|
3682
4234
|
|
|
@@ -3723,6 +4275,52 @@ class WedataClient(AbstractClient):
|
|
|
3723
4275
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
3724
4276
|
|
|
3725
4277
|
|
|
4278
|
+
def DescribeDsLatestTaskVersionInfo(self, request):
|
|
4279
|
+
"""获取任务最新版本
|
|
4280
|
+
|
|
4281
|
+
:param request: Request instance for DescribeDsLatestTaskVersionInfo.
|
|
4282
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeDsLatestTaskVersionInfoRequest`
|
|
4283
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeDsLatestTaskVersionInfoResponse`
|
|
4284
|
+
|
|
4285
|
+
"""
|
|
4286
|
+
try:
|
|
4287
|
+
params = request._serialize()
|
|
4288
|
+
headers = request.headers
|
|
4289
|
+
body = self.call("DescribeDsLatestTaskVersionInfo", params, headers=headers)
|
|
4290
|
+
response = json.loads(body)
|
|
4291
|
+
model = models.DescribeDsLatestTaskVersionInfoResponse()
|
|
4292
|
+
model._deserialize(response["Response"])
|
|
4293
|
+
return model
|
|
4294
|
+
except Exception as e:
|
|
4295
|
+
if isinstance(e, TencentCloudSDKException):
|
|
4296
|
+
raise
|
|
4297
|
+
else:
|
|
4298
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4299
|
+
|
|
4300
|
+
|
|
4301
|
+
def DescribeDsNotSubmitTasksAndCanRunByWorkflow(self, request):
|
|
4302
|
+
"""根据工作流id查询保存未提交任务
|
|
4303
|
+
|
|
4304
|
+
:param request: Request instance for DescribeDsNotSubmitTasksAndCanRunByWorkflow.
|
|
4305
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeDsNotSubmitTasksAndCanRunByWorkflowRequest`
|
|
4306
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeDsNotSubmitTasksAndCanRunByWorkflowResponse`
|
|
4307
|
+
|
|
4308
|
+
"""
|
|
4309
|
+
try:
|
|
4310
|
+
params = request._serialize()
|
|
4311
|
+
headers = request.headers
|
|
4312
|
+
body = self.call("DescribeDsNotSubmitTasksAndCanRunByWorkflow", params, headers=headers)
|
|
4313
|
+
response = json.loads(body)
|
|
4314
|
+
model = models.DescribeDsNotSubmitTasksAndCanRunByWorkflowResponse()
|
|
4315
|
+
model._deserialize(response["Response"])
|
|
4316
|
+
return model
|
|
4317
|
+
except Exception as e:
|
|
4318
|
+
if isinstance(e, TencentCloudSDKException):
|
|
4319
|
+
raise
|
|
4320
|
+
else:
|
|
4321
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4322
|
+
|
|
4323
|
+
|
|
3726
4324
|
def DescribeDsParentFolderTree(self, request):
|
|
3727
4325
|
"""查询父目录树,用于工作流、任务定位
|
|
3728
4326
|
|
|
@@ -3746,6 +4344,52 @@ class WedataClient(AbstractClient):
|
|
|
3746
4344
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
3747
4345
|
|
|
3748
4346
|
|
|
4347
|
+
def DescribeDsTaskVersionInfo(self, request):
|
|
4348
|
+
"""查看任务版本详细信息
|
|
4349
|
+
|
|
4350
|
+
:param request: Request instance for DescribeDsTaskVersionInfo.
|
|
4351
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeDsTaskVersionInfoRequest`
|
|
4352
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeDsTaskVersionInfoResponse`
|
|
4353
|
+
|
|
4354
|
+
"""
|
|
4355
|
+
try:
|
|
4356
|
+
params = request._serialize()
|
|
4357
|
+
headers = request.headers
|
|
4358
|
+
body = self.call("DescribeDsTaskVersionInfo", params, headers=headers)
|
|
4359
|
+
response = json.loads(body)
|
|
4360
|
+
model = models.DescribeDsTaskVersionInfoResponse()
|
|
4361
|
+
model._deserialize(response["Response"])
|
|
4362
|
+
return model
|
|
4363
|
+
except Exception as e:
|
|
4364
|
+
if isinstance(e, TencentCloudSDKException):
|
|
4365
|
+
raise
|
|
4366
|
+
else:
|
|
4367
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4368
|
+
|
|
4369
|
+
|
|
4370
|
+
def DescribeDsTaskVersionList(self, request):
|
|
4371
|
+
"""拉取任务版本列表
|
|
4372
|
+
|
|
4373
|
+
:param request: Request instance for DescribeDsTaskVersionList.
|
|
4374
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeDsTaskVersionListRequest`
|
|
4375
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeDsTaskVersionListResponse`
|
|
4376
|
+
|
|
4377
|
+
"""
|
|
4378
|
+
try:
|
|
4379
|
+
params = request._serialize()
|
|
4380
|
+
headers = request.headers
|
|
4381
|
+
body = self.call("DescribeDsTaskVersionList", params, headers=headers)
|
|
4382
|
+
response = json.loads(body)
|
|
4383
|
+
model = models.DescribeDsTaskVersionListResponse()
|
|
4384
|
+
model._deserialize(response["Response"])
|
|
4385
|
+
return model
|
|
4386
|
+
except Exception as e:
|
|
4387
|
+
if isinstance(e, TencentCloudSDKException):
|
|
4388
|
+
raise
|
|
4389
|
+
else:
|
|
4390
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4391
|
+
|
|
4392
|
+
|
|
3749
4393
|
def DescribeEtlTaskType(self, request):
|
|
3750
4394
|
"""获取数据同步任务类型
|
|
3751
4395
|
|
|
@@ -3999,6 +4643,29 @@ class WedataClient(AbstractClient):
|
|
|
3999
4643
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4000
4644
|
|
|
4001
4645
|
|
|
4646
|
+
def DescribeExecutionLog(self, request):
|
|
4647
|
+
"""获取执行日志
|
|
4648
|
+
|
|
4649
|
+
:param request: Request instance for DescribeExecutionLog.
|
|
4650
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeExecutionLogRequest`
|
|
4651
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeExecutionLogResponse`
|
|
4652
|
+
|
|
4653
|
+
"""
|
|
4654
|
+
try:
|
|
4655
|
+
params = request._serialize()
|
|
4656
|
+
headers = request.headers
|
|
4657
|
+
body = self.call("DescribeExecutionLog", params, headers=headers)
|
|
4658
|
+
response = json.loads(body)
|
|
4659
|
+
model = models.DescribeExecutionLogResponse()
|
|
4660
|
+
model._deserialize(response["Response"])
|
|
4661
|
+
return model
|
|
4662
|
+
except Exception as e:
|
|
4663
|
+
if isinstance(e, TencentCloudSDKException):
|
|
4664
|
+
raise
|
|
4665
|
+
else:
|
|
4666
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4667
|
+
|
|
4668
|
+
|
|
4002
4669
|
def DescribeFatherDatasourceInfoDs(self, request):
|
|
4003
4670
|
"""查询父任务数据源信息Ds
|
|
4004
4671
|
|
|
@@ -4068,6 +4735,29 @@ class WedataClient(AbstractClient):
|
|
|
4068
4735
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4069
4736
|
|
|
4070
4737
|
|
|
4738
|
+
def DescribeFileVersions(self, request):
|
|
4739
|
+
"""查询开发空间版本列表
|
|
4740
|
+
|
|
4741
|
+
:param request: Request instance for DescribeFileVersions.
|
|
4742
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeFileVersionsRequest`
|
|
4743
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeFileVersionsResponse`
|
|
4744
|
+
|
|
4745
|
+
"""
|
|
4746
|
+
try:
|
|
4747
|
+
params = request._serialize()
|
|
4748
|
+
headers = request.headers
|
|
4749
|
+
body = self.call("DescribeFileVersions", params, headers=headers)
|
|
4750
|
+
response = json.loads(body)
|
|
4751
|
+
model = models.DescribeFileVersionsResponse()
|
|
4752
|
+
model._deserialize(response["Response"])
|
|
4753
|
+
return model
|
|
4754
|
+
except Exception as e:
|
|
4755
|
+
if isinstance(e, TencentCloudSDKException):
|
|
4756
|
+
raise
|
|
4757
|
+
else:
|
|
4758
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4759
|
+
|
|
4760
|
+
|
|
4071
4761
|
def DescribeFolderList(self, request):
|
|
4072
4762
|
"""<p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
|
4073
4763
|
拉取文件夹目录
|
|
@@ -4162,6 +4852,29 @@ class WedataClient(AbstractClient):
|
|
|
4162
4852
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4163
4853
|
|
|
4164
4854
|
|
|
4855
|
+
def DescribeGlobalWorkflowDs(self, request):
|
|
4856
|
+
"""获取全局工作流信息,用于跨工作流节点拉取租户所有工作流列表
|
|
4857
|
+
|
|
4858
|
+
:param request: Request instance for DescribeGlobalWorkflowDs.
|
|
4859
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeGlobalWorkflowDsRequest`
|
|
4860
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeGlobalWorkflowDsResponse`
|
|
4861
|
+
|
|
4862
|
+
"""
|
|
4863
|
+
try:
|
|
4864
|
+
params = request._serialize()
|
|
4865
|
+
headers = request.headers
|
|
4866
|
+
body = self.call("DescribeGlobalWorkflowDs", params, headers=headers)
|
|
4867
|
+
response = json.loads(body)
|
|
4868
|
+
model = models.DescribeGlobalWorkflowDsResponse()
|
|
4869
|
+
model._deserialize(response["Response"])
|
|
4870
|
+
return model
|
|
4871
|
+
except Exception as e:
|
|
4872
|
+
if isinstance(e, TencentCloudSDKException):
|
|
4873
|
+
raise
|
|
4874
|
+
else:
|
|
4875
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4876
|
+
|
|
4877
|
+
|
|
4165
4878
|
def DescribeImportableOfflineTask(self, request):
|
|
4166
4879
|
"""查询可导入的集成任务
|
|
4167
4880
|
|
|
@@ -4830,6 +5543,29 @@ class WedataClient(AbstractClient):
|
|
|
4830
5543
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4831
5544
|
|
|
4832
5545
|
|
|
5546
|
+
def DescribeNewSqlTaskResult(self, request):
|
|
5547
|
+
"""新获取SQL执行结果
|
|
5548
|
+
|
|
5549
|
+
:param request: Request instance for DescribeNewSqlTaskResult.
|
|
5550
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeNewSqlTaskResultRequest`
|
|
5551
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeNewSqlTaskResultResponse`
|
|
5552
|
+
|
|
5553
|
+
"""
|
|
5554
|
+
try:
|
|
5555
|
+
params = request._serialize()
|
|
5556
|
+
headers = request.headers
|
|
5557
|
+
body = self.call("DescribeNewSqlTaskResult", params, headers=headers)
|
|
5558
|
+
response = json.loads(body)
|
|
5559
|
+
model = models.DescribeNewSqlTaskResultResponse()
|
|
5560
|
+
model._deserialize(response["Response"])
|
|
5561
|
+
return model
|
|
5562
|
+
except Exception as e:
|
|
5563
|
+
if isinstance(e, TencentCloudSDKException):
|
|
5564
|
+
raise
|
|
5565
|
+
else:
|
|
5566
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
5567
|
+
|
|
5568
|
+
|
|
4833
5569
|
def DescribeOfflineTaskToken(self, request):
|
|
4834
5570
|
"""获取离线任务长连接Token
|
|
4835
5571
|
|
|
@@ -5152,6 +5888,29 @@ class WedataClient(AbstractClient):
|
|
|
5152
5888
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
5153
5889
|
|
|
5154
5890
|
|
|
5891
|
+
def DescribeProdWorkflowCanvasInfoDs(self, request):
|
|
5892
|
+
"""获取工作流画布信息
|
|
5893
|
+
|
|
5894
|
+
:param request: Request instance for DescribeProdWorkflowCanvasInfoDs.
|
|
5895
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeProdWorkflowCanvasInfoDsRequest`
|
|
5896
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeProdWorkflowCanvasInfoDsResponse`
|
|
5897
|
+
|
|
5898
|
+
"""
|
|
5899
|
+
try:
|
|
5900
|
+
params = request._serialize()
|
|
5901
|
+
headers = request.headers
|
|
5902
|
+
body = self.call("DescribeProdWorkflowCanvasInfoDs", params, headers=headers)
|
|
5903
|
+
response = json.loads(body)
|
|
5904
|
+
model = models.DescribeProdWorkflowCanvasInfoDsResponse()
|
|
5905
|
+
model._deserialize(response["Response"])
|
|
5906
|
+
return model
|
|
5907
|
+
except Exception as e:
|
|
5908
|
+
if isinstance(e, TencentCloudSDKException):
|
|
5909
|
+
raise
|
|
5910
|
+
else:
|
|
5911
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
5912
|
+
|
|
5913
|
+
|
|
5155
5914
|
def DescribeProject(self, request):
|
|
5156
5915
|
"""获取项目信息
|
|
5157
5916
|
|
|
@@ -5175,6 +5934,29 @@ class WedataClient(AbstractClient):
|
|
|
5175
5934
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
5176
5935
|
|
|
5177
5936
|
|
|
5937
|
+
def DescribeProjectParamDs(self, request):
|
|
5938
|
+
"""查询项目全局参数
|
|
5939
|
+
|
|
5940
|
+
:param request: Request instance for DescribeProjectParamDs.
|
|
5941
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeProjectParamDsRequest`
|
|
5942
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeProjectParamDsResponse`
|
|
5943
|
+
|
|
5944
|
+
"""
|
|
5945
|
+
try:
|
|
5946
|
+
params = request._serialize()
|
|
5947
|
+
headers = request.headers
|
|
5948
|
+
body = self.call("DescribeProjectParamDs", params, headers=headers)
|
|
5949
|
+
response = json.loads(body)
|
|
5950
|
+
model = models.DescribeProjectParamDsResponse()
|
|
5951
|
+
model._deserialize(response["Response"])
|
|
5952
|
+
return model
|
|
5953
|
+
except Exception as e:
|
|
5954
|
+
if isinstance(e, TencentCloudSDKException):
|
|
5955
|
+
raise
|
|
5956
|
+
else:
|
|
5957
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
5958
|
+
|
|
5959
|
+
|
|
5178
5960
|
def DescribeProjectParamDsPage(self, request):
|
|
5179
5961
|
"""查询项目全局参数
|
|
5180
5962
|
|
|
@@ -5198,6 +5980,29 @@ class WedataClient(AbstractClient):
|
|
|
5198
5980
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
5199
5981
|
|
|
5200
5982
|
|
|
5983
|
+
def DescribeProjectParamVersionDs(self, request):
|
|
5984
|
+
"""查询项目参数历史版本
|
|
5985
|
+
|
|
5986
|
+
:param request: Request instance for DescribeProjectParamVersionDs.
|
|
5987
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeProjectParamVersionDsRequest`
|
|
5988
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeProjectParamVersionDsResponse`
|
|
5989
|
+
|
|
5990
|
+
"""
|
|
5991
|
+
try:
|
|
5992
|
+
params = request._serialize()
|
|
5993
|
+
headers = request.headers
|
|
5994
|
+
body = self.call("DescribeProjectParamVersionDs", params, headers=headers)
|
|
5995
|
+
response = json.loads(body)
|
|
5996
|
+
model = models.DescribeProjectParamVersionDsResponse()
|
|
5997
|
+
model._deserialize(response["Response"])
|
|
5998
|
+
return model
|
|
5999
|
+
except Exception as e:
|
|
6000
|
+
if isinstance(e, TencentCloudSDKException):
|
|
6001
|
+
raise
|
|
6002
|
+
else:
|
|
6003
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
6004
|
+
|
|
6005
|
+
|
|
5201
6006
|
def DescribeProjectParamVersionInfoDs(self, request):
|
|
5202
6007
|
"""拉取项目参数版本详情
|
|
5203
6008
|
|
|
@@ -5336,6 +6141,75 @@ class WedataClient(AbstractClient):
|
|
|
5336
6141
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
5337
6142
|
|
|
5338
6143
|
|
|
6144
|
+
def DescribeRecordList(self, request):
|
|
6145
|
+
"""即席分析-获取任务列表
|
|
6146
|
+
|
|
6147
|
+
:param request: Request instance for DescribeRecordList.
|
|
6148
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeRecordListRequest`
|
|
6149
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeRecordListResponse`
|
|
6150
|
+
|
|
6151
|
+
"""
|
|
6152
|
+
try:
|
|
6153
|
+
params = request._serialize()
|
|
6154
|
+
headers = request.headers
|
|
6155
|
+
body = self.call("DescribeRecordList", params, headers=headers)
|
|
6156
|
+
response = json.loads(body)
|
|
6157
|
+
model = models.DescribeRecordListResponse()
|
|
6158
|
+
model._deserialize(response["Response"])
|
|
6159
|
+
return model
|
|
6160
|
+
except Exception as e:
|
|
6161
|
+
if isinstance(e, TencentCloudSDKException):
|
|
6162
|
+
raise
|
|
6163
|
+
else:
|
|
6164
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
6165
|
+
|
|
6166
|
+
|
|
6167
|
+
def DescribeRecycleTaskDetail(self, request):
|
|
6168
|
+
"""获取回收站任务详情
|
|
6169
|
+
|
|
6170
|
+
:param request: Request instance for DescribeRecycleTaskDetail.
|
|
6171
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeRecycleTaskDetailRequest`
|
|
6172
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeRecycleTaskDetailResponse`
|
|
6173
|
+
|
|
6174
|
+
"""
|
|
6175
|
+
try:
|
|
6176
|
+
params = request._serialize()
|
|
6177
|
+
headers = request.headers
|
|
6178
|
+
body = self.call("DescribeRecycleTaskDetail", params, headers=headers)
|
|
6179
|
+
response = json.loads(body)
|
|
6180
|
+
model = models.DescribeRecycleTaskDetailResponse()
|
|
6181
|
+
model._deserialize(response["Response"])
|
|
6182
|
+
return model
|
|
6183
|
+
except Exception as e:
|
|
6184
|
+
if isinstance(e, TencentCloudSDKException):
|
|
6185
|
+
raise
|
|
6186
|
+
else:
|
|
6187
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
6188
|
+
|
|
6189
|
+
|
|
6190
|
+
def DescribeRecycleTaskList(self, request):
|
|
6191
|
+
"""查询回收站任务列表
|
|
6192
|
+
|
|
6193
|
+
:param request: Request instance for DescribeRecycleTaskList.
|
|
6194
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeRecycleTaskListRequest`
|
|
6195
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeRecycleTaskListResponse`
|
|
6196
|
+
|
|
6197
|
+
"""
|
|
6198
|
+
try:
|
|
6199
|
+
params = request._serialize()
|
|
6200
|
+
headers = request.headers
|
|
6201
|
+
body = self.call("DescribeRecycleTaskList", params, headers=headers)
|
|
6202
|
+
response = json.loads(body)
|
|
6203
|
+
model = models.DescribeRecycleTaskListResponse()
|
|
6204
|
+
model._deserialize(response["Response"])
|
|
6205
|
+
return model
|
|
6206
|
+
except Exception as e:
|
|
6207
|
+
if isinstance(e, TencentCloudSDKException):
|
|
6208
|
+
raise
|
|
6209
|
+
else:
|
|
6210
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
6211
|
+
|
|
6212
|
+
|
|
5339
6213
|
def DescribeRelatedInstances(self, request):
|
|
5340
6214
|
"""查询任务实例的关联实例列表
|
|
5341
6215
|
|
|
@@ -6098,6 +6972,29 @@ class WedataClient(AbstractClient):
|
|
|
6098
6972
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
6099
6973
|
|
|
6100
6974
|
|
|
6975
|
+
def DescribeSqlTaskResult(self, request):
|
|
6976
|
+
"""获取SQL执行结果
|
|
6977
|
+
|
|
6978
|
+
:param request: Request instance for DescribeSqlTaskResult.
|
|
6979
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeSqlTaskResultRequest`
|
|
6980
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeSqlTaskResultResponse`
|
|
6981
|
+
|
|
6982
|
+
"""
|
|
6983
|
+
try:
|
|
6984
|
+
params = request._serialize()
|
|
6985
|
+
headers = request.headers
|
|
6986
|
+
body = self.call("DescribeSqlTaskResult", params, headers=headers)
|
|
6987
|
+
response = json.loads(body)
|
|
6988
|
+
model = models.DescribeSqlTaskResultResponse()
|
|
6989
|
+
model._deserialize(response["Response"])
|
|
6990
|
+
return model
|
|
6991
|
+
except Exception as e:
|
|
6992
|
+
if isinstance(e, TencentCloudSDKException):
|
|
6993
|
+
raise
|
|
6994
|
+
else:
|
|
6995
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
6996
|
+
|
|
6997
|
+
|
|
6101
6998
|
def DescribeStandardRuleDetailInfoList(self, request):
|
|
6102
6999
|
"""获取数据标准规则详情
|
|
6103
7000
|
|
|
@@ -6559,6 +7456,29 @@ class WedataClient(AbstractClient):
|
|
|
6559
7456
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
6560
7457
|
|
|
6561
7458
|
|
|
7459
|
+
def DescribeTaskInParamDs(self, request):
|
|
7460
|
+
"""查询任务输入参数
|
|
7461
|
+
|
|
7462
|
+
:param request: Request instance for DescribeTaskInParamDs.
|
|
7463
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeTaskInParamDsRequest`
|
|
7464
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeTaskInParamDsResponse`
|
|
7465
|
+
|
|
7466
|
+
"""
|
|
7467
|
+
try:
|
|
7468
|
+
params = request._serialize()
|
|
7469
|
+
headers = request.headers
|
|
7470
|
+
body = self.call("DescribeTaskInParamDs", params, headers=headers)
|
|
7471
|
+
response = json.loads(body)
|
|
7472
|
+
model = models.DescribeTaskInParamDsResponse()
|
|
7473
|
+
model._deserialize(response["Response"])
|
|
7474
|
+
return model
|
|
7475
|
+
except Exception as e:
|
|
7476
|
+
if isinstance(e, TencentCloudSDKException):
|
|
7477
|
+
raise
|
|
7478
|
+
else:
|
|
7479
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
7480
|
+
|
|
7481
|
+
|
|
6562
7482
|
def DescribeTaskInstance(self, request):
|
|
6563
7483
|
"""离线任务实例详情
|
|
6564
7484
|
|
|
@@ -6697,6 +7617,29 @@ class WedataClient(AbstractClient):
|
|
|
6697
7617
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
6698
7618
|
|
|
6699
7619
|
|
|
7620
|
+
def DescribeTaskOutParamDs(self, request):
|
|
7621
|
+
"""查询任务输出参数
|
|
7622
|
+
|
|
7623
|
+
:param request: Request instance for DescribeTaskOutParamDs.
|
|
7624
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeTaskOutParamDsRequest`
|
|
7625
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeTaskOutParamDsResponse`
|
|
7626
|
+
|
|
7627
|
+
"""
|
|
7628
|
+
try:
|
|
7629
|
+
params = request._serialize()
|
|
7630
|
+
headers = request.headers
|
|
7631
|
+
body = self.call("DescribeTaskOutParamDs", params, headers=headers)
|
|
7632
|
+
response = json.loads(body)
|
|
7633
|
+
model = models.DescribeTaskOutParamDsResponse()
|
|
7634
|
+
model._deserialize(response["Response"])
|
|
7635
|
+
return model
|
|
7636
|
+
except Exception as e:
|
|
7637
|
+
if isinstance(e, TencentCloudSDKException):
|
|
7638
|
+
raise
|
|
7639
|
+
else:
|
|
7640
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
7641
|
+
|
|
7642
|
+
|
|
6700
7643
|
def DescribeTaskOutputRegistries(self, request):
|
|
6701
7644
|
"""获取指定任务产出登记列表
|
|
6702
7645
|
|
|
@@ -6720,6 +7663,29 @@ class WedataClient(AbstractClient):
|
|
|
6720
7663
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
6721
7664
|
|
|
6722
7665
|
|
|
7666
|
+
def DescribeTaskParamDs(self, request):
|
|
7667
|
+
"""查询任务引用参数
|
|
7668
|
+
|
|
7669
|
+
:param request: Request instance for DescribeTaskParamDs.
|
|
7670
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeTaskParamDsRequest`
|
|
7671
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeTaskParamDsResponse`
|
|
7672
|
+
|
|
7673
|
+
"""
|
|
7674
|
+
try:
|
|
7675
|
+
params = request._serialize()
|
|
7676
|
+
headers = request.headers
|
|
7677
|
+
body = self.call("DescribeTaskParamDs", params, headers=headers)
|
|
7678
|
+
response = json.loads(body)
|
|
7679
|
+
model = models.DescribeTaskParamDsResponse()
|
|
7680
|
+
model._deserialize(response["Response"])
|
|
7681
|
+
return model
|
|
7682
|
+
except Exception as e:
|
|
7683
|
+
if isinstance(e, TencentCloudSDKException):
|
|
7684
|
+
raise
|
|
7685
|
+
else:
|
|
7686
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
7687
|
+
|
|
7688
|
+
|
|
6723
7689
|
def DescribeTaskParentRunTime(self, request):
|
|
6724
7690
|
"""基于当前任务的数据时间计算依赖的上游任务数据时间
|
|
6725
7691
|
|
|
@@ -6952,6 +7918,29 @@ class WedataClient(AbstractClient):
|
|
|
6952
7918
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
6953
7919
|
|
|
6954
7920
|
|
|
7921
|
+
def DescribeTestRun(self, request):
|
|
7922
|
+
"""获取etl测试运行任务执行状态和日志
|
|
7923
|
+
|
|
7924
|
+
:param request: Request instance for DescribeTestRun.
|
|
7925
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeTestRunRequest`
|
|
7926
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeTestRunResponse`
|
|
7927
|
+
|
|
7928
|
+
"""
|
|
7929
|
+
try:
|
|
7930
|
+
params = request._serialize()
|
|
7931
|
+
headers = request.headers
|
|
7932
|
+
body = self.call("DescribeTestRun", params, headers=headers)
|
|
7933
|
+
response = json.loads(body)
|
|
7934
|
+
model = models.DescribeTestRunResponse()
|
|
7935
|
+
model._deserialize(response["Response"])
|
|
7936
|
+
return model
|
|
7937
|
+
except Exception as e:
|
|
7938
|
+
if isinstance(e, TencentCloudSDKException):
|
|
7939
|
+
raise
|
|
7940
|
+
else:
|
|
7941
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
7942
|
+
|
|
7943
|
+
|
|
6955
7944
|
def DescribeThirdTaskRunLog(self, request):
|
|
6956
7945
|
"""获取第三方运行日志
|
|
6957
7946
|
|
|
@@ -6975,6 +7964,29 @@ class WedataClient(AbstractClient):
|
|
|
6975
7964
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
6976
7965
|
|
|
6977
7966
|
|
|
7967
|
+
def DescribeToken(self, request):
|
|
7968
|
+
"""获取长连接Token
|
|
7969
|
+
|
|
7970
|
+
:param request: Request instance for DescribeToken.
|
|
7971
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeTokenRequest`
|
|
7972
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeTokenResponse`
|
|
7973
|
+
|
|
7974
|
+
"""
|
|
7975
|
+
try:
|
|
7976
|
+
params = request._serialize()
|
|
7977
|
+
headers = request.headers
|
|
7978
|
+
body = self.call("DescribeToken", params, headers=headers)
|
|
7979
|
+
response = json.loads(body)
|
|
7980
|
+
model = models.DescribeTokenResponse()
|
|
7981
|
+
model._deserialize(response["Response"])
|
|
7982
|
+
return model
|
|
7983
|
+
except Exception as e:
|
|
7984
|
+
if isinstance(e, TencentCloudSDKException):
|
|
7985
|
+
raise
|
|
7986
|
+
else:
|
|
7987
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
7988
|
+
|
|
7989
|
+
|
|
6978
7990
|
def DescribeTopTableStat(self, request):
|
|
6979
7991
|
"""数据质量概览页面表排行接口
|
|
6980
7992
|
|
|
@@ -7021,6 +8033,29 @@ class WedataClient(AbstractClient):
|
|
|
7021
8033
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
7022
8034
|
|
|
7023
8035
|
|
|
8036
|
+
def DescribeWorkflowByFordIds(self, request):
|
|
8037
|
+
"""根据文件夹查询工作流
|
|
8038
|
+
|
|
8039
|
+
:param request: Request instance for DescribeWorkflowByFordIds.
|
|
8040
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeWorkflowByFordIdsRequest`
|
|
8041
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeWorkflowByFordIdsResponse`
|
|
8042
|
+
|
|
8043
|
+
"""
|
|
8044
|
+
try:
|
|
8045
|
+
params = request._serialize()
|
|
8046
|
+
headers = request.headers
|
|
8047
|
+
body = self.call("DescribeWorkflowByFordIds", params, headers=headers)
|
|
8048
|
+
response = json.loads(body)
|
|
8049
|
+
model = models.DescribeWorkflowByFordIdsResponse()
|
|
8050
|
+
model._deserialize(response["Response"])
|
|
8051
|
+
return model
|
|
8052
|
+
except Exception as e:
|
|
8053
|
+
if isinstance(e, TencentCloudSDKException):
|
|
8054
|
+
raise
|
|
8055
|
+
else:
|
|
8056
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
8057
|
+
|
|
8058
|
+
|
|
7024
8059
|
def DescribeWorkflowCanvasInfo(self, request):
|
|
7025
8060
|
"""查询工作流画布
|
|
7026
8061
|
|
|
@@ -7090,6 +8125,29 @@ class WedataClient(AbstractClient):
|
|
|
7090
8125
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
7091
8126
|
|
|
7092
8127
|
|
|
8128
|
+
def DescribeWorkflowCanvasOperators(self, request):
|
|
8129
|
+
"""获取工作流画布操作人列表
|
|
8130
|
+
|
|
8131
|
+
:param request: Request instance for DescribeWorkflowCanvasOperators.
|
|
8132
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeWorkflowCanvasOperatorsRequest`
|
|
8133
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeWorkflowCanvasOperatorsResponse`
|
|
8134
|
+
|
|
8135
|
+
"""
|
|
8136
|
+
try:
|
|
8137
|
+
params = request._serialize()
|
|
8138
|
+
headers = request.headers
|
|
8139
|
+
body = self.call("DescribeWorkflowCanvasOperators", params, headers=headers)
|
|
8140
|
+
response = json.loads(body)
|
|
8141
|
+
model = models.DescribeWorkflowCanvasOperatorsResponse()
|
|
8142
|
+
model._deserialize(response["Response"])
|
|
8143
|
+
return model
|
|
8144
|
+
except Exception as e:
|
|
8145
|
+
if isinstance(e, TencentCloudSDKException):
|
|
8146
|
+
raise
|
|
8147
|
+
else:
|
|
8148
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
8149
|
+
|
|
8150
|
+
|
|
7093
8151
|
def DescribeWorkflowExecuteById(self, request):
|
|
7094
8152
|
"""查询工作流画布运行起止时间
|
|
7095
8153
|
|
|
@@ -7205,6 +8263,29 @@ class WedataClient(AbstractClient):
|
|
|
7205
8263
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
7206
8264
|
|
|
7207
8265
|
|
|
8266
|
+
def DescribeWorkflowParamDs(self, request):
|
|
8267
|
+
"""查询工作流全局参数
|
|
8268
|
+
|
|
8269
|
+
:param request: Request instance for DescribeWorkflowParamDs.
|
|
8270
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DescribeWorkflowParamDsRequest`
|
|
8271
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DescribeWorkflowParamDsResponse`
|
|
8272
|
+
|
|
8273
|
+
"""
|
|
8274
|
+
try:
|
|
8275
|
+
params = request._serialize()
|
|
8276
|
+
headers = request.headers
|
|
8277
|
+
body = self.call("DescribeWorkflowParamDs", params, headers=headers)
|
|
8278
|
+
response = json.loads(body)
|
|
8279
|
+
model = models.DescribeWorkflowParamDsResponse()
|
|
8280
|
+
model._deserialize(response["Response"])
|
|
8281
|
+
return model
|
|
8282
|
+
except Exception as e:
|
|
8283
|
+
if isinstance(e, TencentCloudSDKException):
|
|
8284
|
+
raise
|
|
8285
|
+
else:
|
|
8286
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
8287
|
+
|
|
8288
|
+
|
|
7208
8289
|
def DescribeWorkflowSchedulerInfoDs(self, request):
|
|
7209
8290
|
"""获取工作流调度信息
|
|
7210
8291
|
|
|
@@ -7297,6 +8378,52 @@ class WedataClient(AbstractClient):
|
|
|
7297
8378
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
7298
8379
|
|
|
7299
8380
|
|
|
8381
|
+
def DownloadNewSqlResult(self, request):
|
|
8382
|
+
"""下载SQL执行结果
|
|
8383
|
+
|
|
8384
|
+
:param request: Request instance for DownloadNewSqlResult.
|
|
8385
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DownloadNewSqlResultRequest`
|
|
8386
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DownloadNewSqlResultResponse`
|
|
8387
|
+
|
|
8388
|
+
"""
|
|
8389
|
+
try:
|
|
8390
|
+
params = request._serialize()
|
|
8391
|
+
headers = request.headers
|
|
8392
|
+
body = self.call("DownloadNewSqlResult", params, headers=headers)
|
|
8393
|
+
response = json.loads(body)
|
|
8394
|
+
model = models.DownloadNewSqlResultResponse()
|
|
8395
|
+
model._deserialize(response["Response"])
|
|
8396
|
+
return model
|
|
8397
|
+
except Exception as e:
|
|
8398
|
+
if isinstance(e, TencentCloudSDKException):
|
|
8399
|
+
raise
|
|
8400
|
+
else:
|
|
8401
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
8402
|
+
|
|
8403
|
+
|
|
8404
|
+
def DownloadSqlResult(self, request):
|
|
8405
|
+
"""下载SQL执行结果
|
|
8406
|
+
|
|
8407
|
+
:param request: Request instance for DownloadSqlResult.
|
|
8408
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.DownloadSqlResultRequest`
|
|
8409
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.DownloadSqlResultResponse`
|
|
8410
|
+
|
|
8411
|
+
"""
|
|
8412
|
+
try:
|
|
8413
|
+
params = request._serialize()
|
|
8414
|
+
headers = request.headers
|
|
8415
|
+
body = self.call("DownloadSqlResult", params, headers=headers)
|
|
8416
|
+
response = json.loads(body)
|
|
8417
|
+
model = models.DownloadSqlResultResponse()
|
|
8418
|
+
model._deserialize(response["Response"])
|
|
8419
|
+
return model
|
|
8420
|
+
except Exception as e:
|
|
8421
|
+
if isinstance(e, TencentCloudSDKException):
|
|
8422
|
+
raise
|
|
8423
|
+
else:
|
|
8424
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
8425
|
+
|
|
8426
|
+
|
|
7300
8427
|
def DryRunDIOfflineTask(self, request):
|
|
7301
8428
|
"""调试运行集成任务
|
|
7302
8429
|
|
|
@@ -7550,6 +8677,29 @@ class WedataClient(AbstractClient):
|
|
|
7550
8677
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
7551
8678
|
|
|
7552
8679
|
|
|
8680
|
+
def FindTaskByRemotePath(self, request):
|
|
8681
|
+
"""远端路径寻找任务
|
|
8682
|
+
|
|
8683
|
+
:param request: Request instance for FindTaskByRemotePath.
|
|
8684
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.FindTaskByRemotePathRequest`
|
|
8685
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.FindTaskByRemotePathResponse`
|
|
8686
|
+
|
|
8687
|
+
"""
|
|
8688
|
+
try:
|
|
8689
|
+
params = request._serialize()
|
|
8690
|
+
headers = request.headers
|
|
8691
|
+
body = self.call("FindTaskByRemotePath", params, headers=headers)
|
|
8692
|
+
response = json.loads(body)
|
|
8693
|
+
model = models.FindTaskByRemotePathResponse()
|
|
8694
|
+
model._deserialize(response["Response"])
|
|
8695
|
+
return model
|
|
8696
|
+
except Exception as e:
|
|
8697
|
+
if isinstance(e, TencentCloudSDKException):
|
|
8698
|
+
raise
|
|
8699
|
+
else:
|
|
8700
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
8701
|
+
|
|
8702
|
+
|
|
7553
8703
|
def ForceSucInstances(self, request):
|
|
7554
8704
|
"""<p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
|
7555
8705
|
实例批量置成功
|
|
@@ -7829,6 +8979,52 @@ class WedataClient(AbstractClient):
|
|
|
7829
8979
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
7830
8980
|
|
|
7831
8981
|
|
|
8982
|
+
def GetLatestAnalyseInfo(self, request):
|
|
8983
|
+
"""开发空间获取最近一次测试运行记录信息
|
|
8984
|
+
|
|
8985
|
+
:param request: Request instance for GetLatestAnalyseInfo.
|
|
8986
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.GetLatestAnalyseInfoRequest`
|
|
8987
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.GetLatestAnalyseInfoResponse`
|
|
8988
|
+
|
|
8989
|
+
"""
|
|
8990
|
+
try:
|
|
8991
|
+
params = request._serialize()
|
|
8992
|
+
headers = request.headers
|
|
8993
|
+
body = self.call("GetLatestAnalyseInfo", params, headers=headers)
|
|
8994
|
+
response = json.loads(body)
|
|
8995
|
+
model = models.GetLatestAnalyseInfoResponse()
|
|
8996
|
+
model._deserialize(response["Response"])
|
|
8997
|
+
return model
|
|
8998
|
+
except Exception as e:
|
|
8999
|
+
if isinstance(e, TencentCloudSDKException):
|
|
9000
|
+
raise
|
|
9001
|
+
else:
|
|
9002
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
9003
|
+
|
|
9004
|
+
|
|
9005
|
+
def GetLatestTestRunInfo(self, request):
|
|
9006
|
+
"""编排空间获取最近一次测试运行记录信息
|
|
9007
|
+
|
|
9008
|
+
:param request: Request instance for GetLatestTestRunInfo.
|
|
9009
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.GetLatestTestRunInfoRequest`
|
|
9010
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.GetLatestTestRunInfoResponse`
|
|
9011
|
+
|
|
9012
|
+
"""
|
|
9013
|
+
try:
|
|
9014
|
+
params = request._serialize()
|
|
9015
|
+
headers = request.headers
|
|
9016
|
+
body = self.call("GetLatestTestRunInfo", params, headers=headers)
|
|
9017
|
+
response = json.loads(body)
|
|
9018
|
+
model = models.GetLatestTestRunInfoResponse()
|
|
9019
|
+
model._deserialize(response["Response"])
|
|
9020
|
+
return model
|
|
9021
|
+
except Exception as e:
|
|
9022
|
+
if isinstance(e, TencentCloudSDKException):
|
|
9023
|
+
raise
|
|
9024
|
+
else:
|
|
9025
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
9026
|
+
|
|
9027
|
+
|
|
7832
9028
|
def GetOfflineDIInstanceList(self, request):
|
|
7833
9029
|
"""获取离线任务实例列表(新)
|
|
7834
9030
|
|
|
@@ -7898,6 +9094,29 @@ class WedataClient(AbstractClient):
|
|
|
7898
9094
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
7899
9095
|
|
|
7900
9096
|
|
|
9097
|
+
def GetResourceCosPath(self, request):
|
|
9098
|
+
"""资源管理-获取资源上传的可用 cos 路径
|
|
9099
|
+
|
|
9100
|
+
:param request: Request instance for GetResourceCosPath.
|
|
9101
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.GetResourceCosPathRequest`
|
|
9102
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.GetResourceCosPathResponse`
|
|
9103
|
+
|
|
9104
|
+
"""
|
|
9105
|
+
try:
|
|
9106
|
+
params = request._serialize()
|
|
9107
|
+
headers = request.headers
|
|
9108
|
+
body = self.call("GetResourceCosPath", params, headers=headers)
|
|
9109
|
+
response = json.loads(body)
|
|
9110
|
+
model = models.GetResourceCosPathResponse()
|
|
9111
|
+
model._deserialize(response["Response"])
|
|
9112
|
+
return model
|
|
9113
|
+
except Exception as e:
|
|
9114
|
+
if isinstance(e, TencentCloudSDKException):
|
|
9115
|
+
raise
|
|
9116
|
+
else:
|
|
9117
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
9118
|
+
|
|
9119
|
+
|
|
7901
9120
|
def GetResourcePathTree(self, request):
|
|
7902
9121
|
"""资源管理-拉取资源目录树
|
|
7903
9122
|
|
|
@@ -7955,9 +9174,101 @@ class WedataClient(AbstractClient):
|
|
|
7955
9174
|
try:
|
|
7956
9175
|
params = request._serialize()
|
|
7957
9176
|
headers = request.headers
|
|
7958
|
-
body = self.call("GetTestRunTaskInstancesStatusInfo", params, headers=headers)
|
|
9177
|
+
body = self.call("GetTestRunTaskInstancesStatusInfo", params, headers=headers)
|
|
9178
|
+
response = json.loads(body)
|
|
9179
|
+
model = models.GetTestRunTaskInstancesStatusInfoResponse()
|
|
9180
|
+
model._deserialize(response["Response"])
|
|
9181
|
+
return model
|
|
9182
|
+
except Exception as e:
|
|
9183
|
+
if isinstance(e, TencentCloudSDKException):
|
|
9184
|
+
raise
|
|
9185
|
+
else:
|
|
9186
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
9187
|
+
|
|
9188
|
+
|
|
9189
|
+
def HeartBeat(self, request):
|
|
9190
|
+
"""协同编辑资源锁心跳
|
|
9191
|
+
|
|
9192
|
+
:param request: Request instance for HeartBeat.
|
|
9193
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.HeartBeatRequest`
|
|
9194
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.HeartBeatResponse`
|
|
9195
|
+
|
|
9196
|
+
"""
|
|
9197
|
+
try:
|
|
9198
|
+
params = request._serialize()
|
|
9199
|
+
headers = request.headers
|
|
9200
|
+
body = self.call("HeartBeat", params, headers=headers)
|
|
9201
|
+
response = json.loads(body)
|
|
9202
|
+
model = models.HeartBeatResponse()
|
|
9203
|
+
model._deserialize(response["Response"])
|
|
9204
|
+
return model
|
|
9205
|
+
except Exception as e:
|
|
9206
|
+
if isinstance(e, TencentCloudSDKException):
|
|
9207
|
+
raise
|
|
9208
|
+
else:
|
|
9209
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
9210
|
+
|
|
9211
|
+
|
|
9212
|
+
def ImportDsEvent(self, request):
|
|
9213
|
+
"""事件管理-导入事件
|
|
9214
|
+
|
|
9215
|
+
:param request: Request instance for ImportDsEvent.
|
|
9216
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.ImportDsEventRequest`
|
|
9217
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.ImportDsEventResponse`
|
|
9218
|
+
|
|
9219
|
+
"""
|
|
9220
|
+
try:
|
|
9221
|
+
params = request._serialize()
|
|
9222
|
+
headers = request.headers
|
|
9223
|
+
body = self.call("ImportDsEvent", params, headers=headers)
|
|
9224
|
+
response = json.loads(body)
|
|
9225
|
+
model = models.ImportDsEventResponse()
|
|
9226
|
+
model._deserialize(response["Response"])
|
|
9227
|
+
return model
|
|
9228
|
+
except Exception as e:
|
|
9229
|
+
if isinstance(e, TencentCloudSDKException):
|
|
9230
|
+
raise
|
|
9231
|
+
else:
|
|
9232
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
9233
|
+
|
|
9234
|
+
|
|
9235
|
+
def ImportFiles(self, request):
|
|
9236
|
+
"""批量导入文件
|
|
9237
|
+
|
|
9238
|
+
:param request: Request instance for ImportFiles.
|
|
9239
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.ImportFilesRequest`
|
|
9240
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.ImportFilesResponse`
|
|
9241
|
+
|
|
9242
|
+
"""
|
|
9243
|
+
try:
|
|
9244
|
+
params = request._serialize()
|
|
9245
|
+
headers = request.headers
|
|
9246
|
+
body = self.call("ImportFiles", params, headers=headers)
|
|
9247
|
+
response = json.loads(body)
|
|
9248
|
+
model = models.ImportFilesResponse()
|
|
9249
|
+
model._deserialize(response["Response"])
|
|
9250
|
+
return model
|
|
9251
|
+
except Exception as e:
|
|
9252
|
+
if isinstance(e, TencentCloudSDKException):
|
|
9253
|
+
raise
|
|
9254
|
+
else:
|
|
9255
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
9256
|
+
|
|
9257
|
+
|
|
9258
|
+
def ImportOfflineTask(self, request):
|
|
9259
|
+
"""异步导入集成任务
|
|
9260
|
+
|
|
9261
|
+
:param request: Request instance for ImportOfflineTask.
|
|
9262
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.ImportOfflineTaskRequest`
|
|
9263
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.ImportOfflineTaskResponse`
|
|
9264
|
+
|
|
9265
|
+
"""
|
|
9266
|
+
try:
|
|
9267
|
+
params = request._serialize()
|
|
9268
|
+
headers = request.headers
|
|
9269
|
+
body = self.call("ImportOfflineTask", params, headers=headers)
|
|
7959
9270
|
response = json.loads(body)
|
|
7960
|
-
model = models.
|
|
9271
|
+
model = models.ImportOfflineTaskResponse()
|
|
7961
9272
|
model._deserialize(response["Response"])
|
|
7962
9273
|
return model
|
|
7963
9274
|
except Exception as e:
|
|
@@ -7967,20 +9278,20 @@ class WedataClient(AbstractClient):
|
|
|
7967
9278
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
7968
9279
|
|
|
7969
9280
|
|
|
7970
|
-
def
|
|
7971
|
-
"""
|
|
9281
|
+
def ImportProjectParamDs(self, request):
|
|
9282
|
+
"""导入项目参数
|
|
7972
9283
|
|
|
7973
|
-
:param request: Request instance for
|
|
7974
|
-
:type request: :class:`tencentcloud.wedata.v20210820.models.
|
|
7975
|
-
:rtype: :class:`tencentcloud.wedata.v20210820.models.
|
|
9284
|
+
:param request: Request instance for ImportProjectParamDs.
|
|
9285
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.ImportProjectParamDsRequest`
|
|
9286
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.ImportProjectParamDsResponse`
|
|
7976
9287
|
|
|
7977
9288
|
"""
|
|
7978
9289
|
try:
|
|
7979
9290
|
params = request._serialize()
|
|
7980
9291
|
headers = request.headers
|
|
7981
|
-
body = self.call("
|
|
9292
|
+
body = self.call("ImportProjectParamDs", params, headers=headers)
|
|
7982
9293
|
response = json.loads(body)
|
|
7983
|
-
model = models.
|
|
9294
|
+
model = models.ImportProjectParamDsResponse()
|
|
7984
9295
|
model._deserialize(response["Response"])
|
|
7985
9296
|
return model
|
|
7986
9297
|
except Exception as e:
|
|
@@ -7990,20 +9301,20 @@ class WedataClient(AbstractClient):
|
|
|
7990
9301
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
7991
9302
|
|
|
7992
9303
|
|
|
7993
|
-
def
|
|
7994
|
-
"""
|
|
9304
|
+
def ImportTableData(self, request):
|
|
9305
|
+
"""创建数据表:HIVE
|
|
7995
9306
|
|
|
7996
|
-
:param request: Request instance for
|
|
7997
|
-
:type request: :class:`tencentcloud.wedata.v20210820.models.
|
|
7998
|
-
:rtype: :class:`tencentcloud.wedata.v20210820.models.
|
|
9307
|
+
:param request: Request instance for ImportTableData.
|
|
9308
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.ImportTableDataRequest`
|
|
9309
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.ImportTableDataResponse`
|
|
7999
9310
|
|
|
8000
9311
|
"""
|
|
8001
9312
|
try:
|
|
8002
9313
|
params = request._serialize()
|
|
8003
9314
|
headers = request.headers
|
|
8004
|
-
body = self.call("
|
|
9315
|
+
body = self.call("ImportTableData", params, headers=headers)
|
|
8005
9316
|
response = json.loads(body)
|
|
8006
|
-
model = models.
|
|
9317
|
+
model = models.ImportTableDataResponse()
|
|
8007
9318
|
model._deserialize(response["Response"])
|
|
8008
9319
|
return model
|
|
8009
9320
|
except Exception as e:
|
|
@@ -8013,20 +9324,20 @@ class WedataClient(AbstractClient):
|
|
|
8013
9324
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
8014
9325
|
|
|
8015
9326
|
|
|
8016
|
-
def
|
|
8017
|
-
"""
|
|
9327
|
+
def ImportWorkflowXml(self, request):
|
|
9328
|
+
"""工作流导入(XML)
|
|
8018
9329
|
|
|
8019
|
-
:param request: Request instance for
|
|
8020
|
-
:type request: :class:`tencentcloud.wedata.v20210820.models.
|
|
8021
|
-
:rtype: :class:`tencentcloud.wedata.v20210820.models.
|
|
9330
|
+
:param request: Request instance for ImportWorkflowXml.
|
|
9331
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.ImportWorkflowXmlRequest`
|
|
9332
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.ImportWorkflowXmlResponse`
|
|
8022
9333
|
|
|
8023
9334
|
"""
|
|
8024
9335
|
try:
|
|
8025
9336
|
params = request._serialize()
|
|
8026
9337
|
headers = request.headers
|
|
8027
|
-
body = self.call("
|
|
9338
|
+
body = self.call("ImportWorkflowXml", params, headers=headers)
|
|
8028
9339
|
response = json.loads(body)
|
|
8029
|
-
model = models.
|
|
9340
|
+
model = models.ImportWorkflowXmlResponse()
|
|
8030
9341
|
model._deserialize(response["Response"])
|
|
8031
9342
|
return model
|
|
8032
9343
|
except Exception as e:
|
|
@@ -8036,20 +9347,20 @@ class WedataClient(AbstractClient):
|
|
|
8036
9347
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
8037
9348
|
|
|
8038
9349
|
|
|
8039
|
-
def
|
|
8040
|
-
"""
|
|
9350
|
+
def ImportWorkflowZip(self, request):
|
|
9351
|
+
"""工作流导入(ZIP)
|
|
8041
9352
|
|
|
8042
|
-
:param request: Request instance for
|
|
8043
|
-
:type request: :class:`tencentcloud.wedata.v20210820.models.
|
|
8044
|
-
:rtype: :class:`tencentcloud.wedata.v20210820.models.
|
|
9353
|
+
:param request: Request instance for ImportWorkflowZip.
|
|
9354
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.ImportWorkflowZipRequest`
|
|
9355
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.ImportWorkflowZipResponse`
|
|
8045
9356
|
|
|
8046
9357
|
"""
|
|
8047
9358
|
try:
|
|
8048
9359
|
params = request._serialize()
|
|
8049
9360
|
headers = request.headers
|
|
8050
|
-
body = self.call("
|
|
9361
|
+
body = self.call("ImportWorkflowZip", params, headers=headers)
|
|
8051
9362
|
response = json.loads(body)
|
|
8052
|
-
model = models.
|
|
9363
|
+
model = models.ImportWorkflowZipResponse()
|
|
8053
9364
|
model._deserialize(response["Response"])
|
|
8054
9365
|
return model
|
|
8055
9366
|
except Exception as e:
|
|
@@ -8059,20 +9370,20 @@ class WedataClient(AbstractClient):
|
|
|
8059
9370
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
8060
9371
|
|
|
8061
9372
|
|
|
8062
|
-
def
|
|
8063
|
-
"""
|
|
9373
|
+
def JudgeResourceFile(self, request):
|
|
9374
|
+
"""资源管理-判断资源文件是否存在
|
|
8064
9375
|
|
|
8065
|
-
:param request: Request instance for
|
|
8066
|
-
:type request: :class:`tencentcloud.wedata.v20210820.models.
|
|
8067
|
-
:rtype: :class:`tencentcloud.wedata.v20210820.models.
|
|
9376
|
+
:param request: Request instance for JudgeResourceFile.
|
|
9377
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.JudgeResourceFileRequest`
|
|
9378
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.JudgeResourceFileResponse`
|
|
8068
9379
|
|
|
8069
9380
|
"""
|
|
8070
9381
|
try:
|
|
8071
9382
|
params = request._serialize()
|
|
8072
9383
|
headers = request.headers
|
|
8073
|
-
body = self.call("
|
|
9384
|
+
body = self.call("JudgeResourceFile", params, headers=headers)
|
|
8074
9385
|
response = json.loads(body)
|
|
8075
|
-
model = models.
|
|
9386
|
+
model = models.JudgeResourceFileResponse()
|
|
8076
9387
|
model._deserialize(response["Response"])
|
|
8077
9388
|
return model
|
|
8078
9389
|
except Exception as e:
|
|
@@ -8175,6 +9486,29 @@ class WedataClient(AbstractClient):
|
|
|
8175
9486
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
8176
9487
|
|
|
8177
9488
|
|
|
9489
|
+
def KillTasksTestRun(self, request):
|
|
9490
|
+
"""停止试运行任务(多个)
|
|
9491
|
+
|
|
9492
|
+
:param request: Request instance for KillTasksTestRun.
|
|
9493
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.KillTasksTestRunRequest`
|
|
9494
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.KillTasksTestRunResponse`
|
|
9495
|
+
|
|
9496
|
+
"""
|
|
9497
|
+
try:
|
|
9498
|
+
params = request._serialize()
|
|
9499
|
+
headers = request.headers
|
|
9500
|
+
body = self.call("KillTasksTestRun", params, headers=headers)
|
|
9501
|
+
response = json.loads(body)
|
|
9502
|
+
model = models.KillTasksTestRunResponse()
|
|
9503
|
+
model._deserialize(response["Response"])
|
|
9504
|
+
return model
|
|
9505
|
+
except Exception as e:
|
|
9506
|
+
if isinstance(e, TencentCloudSDKException):
|
|
9507
|
+
raise
|
|
9508
|
+
else:
|
|
9509
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
9510
|
+
|
|
9511
|
+
|
|
8178
9512
|
def ListBatchDetail(self, request):
|
|
8179
9513
|
"""获取操作详情列表
|
|
8180
9514
|
|
|
@@ -8968,6 +10302,52 @@ class WedataClient(AbstractClient):
|
|
|
8968
10302
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
8969
10303
|
|
|
8970
10304
|
|
|
10305
|
+
def PreviewDataTableCsv(self, request):
|
|
10306
|
+
"""库表管理-新建数据表-csv预览,最多支持500行预览
|
|
10307
|
+
|
|
10308
|
+
:param request: Request instance for PreviewDataTableCsv.
|
|
10309
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.PreviewDataTableCsvRequest`
|
|
10310
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.PreviewDataTableCsvResponse`
|
|
10311
|
+
|
|
10312
|
+
"""
|
|
10313
|
+
try:
|
|
10314
|
+
params = request._serialize()
|
|
10315
|
+
headers = request.headers
|
|
10316
|
+
body = self.call("PreviewDataTableCsv", params, headers=headers)
|
|
10317
|
+
response = json.loads(body)
|
|
10318
|
+
model = models.PreviewDataTableCsvResponse()
|
|
10319
|
+
model._deserialize(response["Response"])
|
|
10320
|
+
return model
|
|
10321
|
+
except Exception as e:
|
|
10322
|
+
if isinstance(e, TencentCloudSDKException):
|
|
10323
|
+
raise
|
|
10324
|
+
else:
|
|
10325
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
10326
|
+
|
|
10327
|
+
|
|
10328
|
+
def QueryWorkflowVersion(self, request):
|
|
10329
|
+
"""查询工作流版本信息
|
|
10330
|
+
|
|
10331
|
+
:param request: Request instance for QueryWorkflowVersion.
|
|
10332
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.QueryWorkflowVersionRequest`
|
|
10333
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.QueryWorkflowVersionResponse`
|
|
10334
|
+
|
|
10335
|
+
"""
|
|
10336
|
+
try:
|
|
10337
|
+
params = request._serialize()
|
|
10338
|
+
headers = request.headers
|
|
10339
|
+
body = self.call("QueryWorkflowVersion", params, headers=headers)
|
|
10340
|
+
response = json.loads(body)
|
|
10341
|
+
model = models.QueryWorkflowVersionResponse()
|
|
10342
|
+
model._deserialize(response["Response"])
|
|
10343
|
+
return model
|
|
10344
|
+
except Exception as e:
|
|
10345
|
+
if isinstance(e, TencentCloudSDKException):
|
|
10346
|
+
raise
|
|
10347
|
+
else:
|
|
10348
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
10349
|
+
|
|
10350
|
+
|
|
8971
10351
|
def RegisterDsEvent(self, request):
|
|
8972
10352
|
"""注册事件
|
|
8973
10353
|
|
|
@@ -9200,6 +10580,29 @@ class WedataClient(AbstractClient):
|
|
|
9200
10580
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
9201
10581
|
|
|
9202
10582
|
|
|
10583
|
+
def RenameResourcePath(self, request):
|
|
10584
|
+
"""资源管理-重命名资源目录
|
|
10585
|
+
|
|
10586
|
+
:param request: Request instance for RenameResourcePath.
|
|
10587
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.RenameResourcePathRequest`
|
|
10588
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.RenameResourcePathResponse`
|
|
10589
|
+
|
|
10590
|
+
"""
|
|
10591
|
+
try:
|
|
10592
|
+
params = request._serialize()
|
|
10593
|
+
headers = request.headers
|
|
10594
|
+
body = self.call("RenameResourcePath", params, headers=headers)
|
|
10595
|
+
response = json.loads(body)
|
|
10596
|
+
model = models.RenameResourcePathResponse()
|
|
10597
|
+
model._deserialize(response["Response"])
|
|
10598
|
+
return model
|
|
10599
|
+
except Exception as e:
|
|
10600
|
+
if isinstance(e, TencentCloudSDKException):
|
|
10601
|
+
raise
|
|
10602
|
+
else:
|
|
10603
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
10604
|
+
|
|
10605
|
+
|
|
9203
10606
|
def RenameTaskDs(self, request):
|
|
9204
10607
|
"""RenameTaskDs
|
|
9205
10608
|
|
|
@@ -9315,6 +10718,29 @@ class WedataClient(AbstractClient):
|
|
|
9315
10718
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
9316
10719
|
|
|
9317
10720
|
|
|
10721
|
+
def ReplaceProjectParamVersionDs(self, request):
|
|
10722
|
+
"""替换项目参数历史版本
|
|
10723
|
+
|
|
10724
|
+
:param request: Request instance for ReplaceProjectParamVersionDs.
|
|
10725
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.ReplaceProjectParamVersionDsRequest`
|
|
10726
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.ReplaceProjectParamVersionDsResponse`
|
|
10727
|
+
|
|
10728
|
+
"""
|
|
10729
|
+
try:
|
|
10730
|
+
params = request._serialize()
|
|
10731
|
+
headers = request.headers
|
|
10732
|
+
body = self.call("ReplaceProjectParamVersionDs", params, headers=headers)
|
|
10733
|
+
response = json.loads(body)
|
|
10734
|
+
model = models.ReplaceProjectParamVersionDsResponse()
|
|
10735
|
+
model._deserialize(response["Response"])
|
|
10736
|
+
return model
|
|
10737
|
+
except Exception as e:
|
|
10738
|
+
if isinstance(e, TencentCloudSDKException):
|
|
10739
|
+
raise
|
|
10740
|
+
else:
|
|
10741
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
10742
|
+
|
|
10743
|
+
|
|
9318
10744
|
def RerunInstances(self, request):
|
|
9319
10745
|
"""<p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
|
9320
10746
|
实例批量重跑
|
|
@@ -9408,6 +10834,29 @@ class WedataClient(AbstractClient):
|
|
|
9408
10834
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
9409
10835
|
|
|
9410
10836
|
|
|
10837
|
+
def RestoreRecycleTask(self, request):
|
|
10838
|
+
"""还原任务
|
|
10839
|
+
|
|
10840
|
+
:param request: Request instance for RestoreRecycleTask.
|
|
10841
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.RestoreRecycleTaskRequest`
|
|
10842
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.RestoreRecycleTaskResponse`
|
|
10843
|
+
|
|
10844
|
+
"""
|
|
10845
|
+
try:
|
|
10846
|
+
params = request._serialize()
|
|
10847
|
+
headers = request.headers
|
|
10848
|
+
body = self.call("RestoreRecycleTask", params, headers=headers)
|
|
10849
|
+
response = json.loads(body)
|
|
10850
|
+
model = models.RestoreRecycleTaskResponse()
|
|
10851
|
+
model._deserialize(response["Response"])
|
|
10852
|
+
return model
|
|
10853
|
+
except Exception as e:
|
|
10854
|
+
if isinstance(e, TencentCloudSDKException):
|
|
10855
|
+
raise
|
|
10856
|
+
else:
|
|
10857
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
10858
|
+
|
|
10859
|
+
|
|
9411
10860
|
def ResumeIntegrationTask(self, request):
|
|
9412
10861
|
"""继续集成任务
|
|
9413
10862
|
|
|
@@ -9454,6 +10903,29 @@ class WedataClient(AbstractClient):
|
|
|
9454
10903
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
9455
10904
|
|
|
9456
10905
|
|
|
10906
|
+
def RollbackCustomFunctionVersion(self, request):
|
|
10907
|
+
"""回滚自定义函数版本
|
|
10908
|
+
|
|
10909
|
+
:param request: Request instance for RollbackCustomFunctionVersion.
|
|
10910
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.RollbackCustomFunctionVersionRequest`
|
|
10911
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.RollbackCustomFunctionVersionResponse`
|
|
10912
|
+
|
|
10913
|
+
"""
|
|
10914
|
+
try:
|
|
10915
|
+
params = request._serialize()
|
|
10916
|
+
headers = request.headers
|
|
10917
|
+
body = self.call("RollbackCustomFunctionVersion", params, headers=headers)
|
|
10918
|
+
response = json.loads(body)
|
|
10919
|
+
model = models.RollbackCustomFunctionVersionResponse()
|
|
10920
|
+
model._deserialize(response["Response"])
|
|
10921
|
+
return model
|
|
10922
|
+
except Exception as e:
|
|
10923
|
+
if isinstance(e, TencentCloudSDKException):
|
|
10924
|
+
raise
|
|
10925
|
+
else:
|
|
10926
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
10927
|
+
|
|
10928
|
+
|
|
9457
10929
|
def RunForceSucScheduleInstances(self, request):
|
|
9458
10930
|
"""实例强制成功
|
|
9459
10931
|
|
|
@@ -9663,6 +11135,29 @@ class WedataClient(AbstractClient):
|
|
|
9663
11135
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
9664
11136
|
|
|
9665
11137
|
|
|
11138
|
+
def StopAdhocTask(self, request):
|
|
11139
|
+
"""即席分析终止任务接口
|
|
11140
|
+
|
|
11141
|
+
:param request: Request instance for StopAdhocTask.
|
|
11142
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.StopAdhocTaskRequest`
|
|
11143
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.StopAdhocTaskResponse`
|
|
11144
|
+
|
|
11145
|
+
"""
|
|
11146
|
+
try:
|
|
11147
|
+
params = request._serialize()
|
|
11148
|
+
headers = request.headers
|
|
11149
|
+
body = self.call("StopAdhocTask", params, headers=headers)
|
|
11150
|
+
response = json.loads(body)
|
|
11151
|
+
model = models.StopAdhocTaskResponse()
|
|
11152
|
+
model._deserialize(response["Response"])
|
|
11153
|
+
return model
|
|
11154
|
+
except Exception as e:
|
|
11155
|
+
if isinstance(e, TencentCloudSDKException):
|
|
11156
|
+
raise
|
|
11157
|
+
else:
|
|
11158
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
11159
|
+
|
|
11160
|
+
|
|
9666
11161
|
def StopBaseline(self, request):
|
|
9667
11162
|
"""提交基线
|
|
9668
11163
|
|
|
@@ -9709,6 +11204,29 @@ class WedataClient(AbstractClient):
|
|
|
9709
11204
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
9710
11205
|
|
|
9711
11206
|
|
|
11207
|
+
def StopTestRun(self, request):
|
|
11208
|
+
"""终止etl测试运行任务
|
|
11209
|
+
|
|
11210
|
+
:param request: Request instance for StopTestRun.
|
|
11211
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.StopTestRunRequest`
|
|
11212
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.StopTestRunResponse`
|
|
11213
|
+
|
|
11214
|
+
"""
|
|
11215
|
+
try:
|
|
11216
|
+
params = request._serialize()
|
|
11217
|
+
headers = request.headers
|
|
11218
|
+
body = self.call("StopTestRun", params, headers=headers)
|
|
11219
|
+
response = json.loads(body)
|
|
11220
|
+
model = models.StopTestRunResponse()
|
|
11221
|
+
model._deserialize(response["Response"])
|
|
11222
|
+
return model
|
|
11223
|
+
except Exception as e:
|
|
11224
|
+
if isinstance(e, TencentCloudSDKException):
|
|
11225
|
+
raise
|
|
11226
|
+
else:
|
|
11227
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
11228
|
+
|
|
11229
|
+
|
|
9712
11230
|
def SubmitBaseline(self, request):
|
|
9713
11231
|
"""提交基线
|
|
9714
11232
|
|
|
@@ -9732,6 +11250,29 @@ class WedataClient(AbstractClient):
|
|
|
9732
11250
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
9733
11251
|
|
|
9734
11252
|
|
|
11253
|
+
def SubmitBatchTestRun(self, request):
|
|
11254
|
+
"""批量提交etl测试运行任务
|
|
11255
|
+
|
|
11256
|
+
:param request: Request instance for SubmitBatchTestRun.
|
|
11257
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.SubmitBatchTestRunRequest`
|
|
11258
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.SubmitBatchTestRunResponse`
|
|
11259
|
+
|
|
11260
|
+
"""
|
|
11261
|
+
try:
|
|
11262
|
+
params = request._serialize()
|
|
11263
|
+
headers = request.headers
|
|
11264
|
+
body = self.call("SubmitBatchTestRun", params, headers=headers)
|
|
11265
|
+
response = json.loads(body)
|
|
11266
|
+
model = models.SubmitBatchTestRunResponse()
|
|
11267
|
+
model._deserialize(response["Response"])
|
|
11268
|
+
return model
|
|
11269
|
+
except Exception as e:
|
|
11270
|
+
if isinstance(e, TencentCloudSDKException):
|
|
11271
|
+
raise
|
|
11272
|
+
else:
|
|
11273
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
11274
|
+
|
|
11275
|
+
|
|
9735
11276
|
def SubmitCustomFunction(self, request):
|
|
9736
11277
|
"""提交自定义函数
|
|
9737
11278
|
|
|
@@ -9755,6 +11296,29 @@ class WedataClient(AbstractClient):
|
|
|
9755
11296
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
9756
11297
|
|
|
9757
11298
|
|
|
11299
|
+
def SubmitIntegrationTask(self, request):
|
|
11300
|
+
"""即席分析提交数据集成任务
|
|
11301
|
+
|
|
11302
|
+
:param request: Request instance for SubmitIntegrationTask.
|
|
11303
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.SubmitIntegrationTaskRequest`
|
|
11304
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.SubmitIntegrationTaskResponse`
|
|
11305
|
+
|
|
11306
|
+
"""
|
|
11307
|
+
try:
|
|
11308
|
+
params = request._serialize()
|
|
11309
|
+
headers = request.headers
|
|
11310
|
+
body = self.call("SubmitIntegrationTask", params, headers=headers)
|
|
11311
|
+
response = json.loads(body)
|
|
11312
|
+
model = models.SubmitIntegrationTaskResponse()
|
|
11313
|
+
model._deserialize(response["Response"])
|
|
11314
|
+
return model
|
|
11315
|
+
except Exception as e:
|
|
11316
|
+
if isinstance(e, TencentCloudSDKException):
|
|
11317
|
+
raise
|
|
11318
|
+
else:
|
|
11319
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
11320
|
+
|
|
11321
|
+
|
|
9758
11322
|
def SubmitPySparkTask(self, request):
|
|
9759
11323
|
"""即席分析提交PySpark任务
|
|
9760
11324
|
|
|
@@ -9894,6 +11458,29 @@ class WedataClient(AbstractClient):
|
|
|
9894
11458
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
9895
11459
|
|
|
9896
11460
|
|
|
11461
|
+
def SubmitTestRun(self, request):
|
|
11462
|
+
"""提交etl测试运行任务
|
|
11463
|
+
|
|
11464
|
+
:param request: Request instance for SubmitTestRun.
|
|
11465
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.SubmitTestRunRequest`
|
|
11466
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.SubmitTestRunResponse`
|
|
11467
|
+
|
|
11468
|
+
"""
|
|
11469
|
+
try:
|
|
11470
|
+
params = request._serialize()
|
|
11471
|
+
headers = request.headers
|
|
11472
|
+
body = self.call("SubmitTestRun", params, headers=headers)
|
|
11473
|
+
response = json.loads(body)
|
|
11474
|
+
model = models.SubmitTestRunResponse()
|
|
11475
|
+
model._deserialize(response["Response"])
|
|
11476
|
+
return model
|
|
11477
|
+
except Exception as e:
|
|
11478
|
+
if isinstance(e, TencentCloudSDKException):
|
|
11479
|
+
raise
|
|
11480
|
+
else:
|
|
11481
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
11482
|
+
|
|
11483
|
+
|
|
9897
11484
|
def SubmitWorkflow(self, request):
|
|
9898
11485
|
"""<p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
|
9899
11486
|
提交工作流
|
|
@@ -10287,6 +11874,30 @@ class WedataClient(AbstractClient):
|
|
|
10287
11874
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
10288
11875
|
|
|
10289
11876
|
|
|
11877
|
+
def UpdateWorkflowInfo(self, request):
|
|
11878
|
+
"""<p style="color:red;">[该接口为 ds 中开发]</p>
|
|
11879
|
+
更新工作流(包括工作流基本信息与工作流参数)
|
|
11880
|
+
|
|
11881
|
+
:param request: Request instance for UpdateWorkflowInfo.
|
|
11882
|
+
:type request: :class:`tencentcloud.wedata.v20210820.models.UpdateWorkflowInfoRequest`
|
|
11883
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.UpdateWorkflowInfoResponse`
|
|
11884
|
+
|
|
11885
|
+
"""
|
|
11886
|
+
try:
|
|
11887
|
+
params = request._serialize()
|
|
11888
|
+
headers = request.headers
|
|
11889
|
+
body = self.call("UpdateWorkflowInfo", params, headers=headers)
|
|
11890
|
+
response = json.loads(body)
|
|
11891
|
+
model = models.UpdateWorkflowInfoResponse()
|
|
11892
|
+
model._deserialize(response["Response"])
|
|
11893
|
+
return model
|
|
11894
|
+
except Exception as e:
|
|
11895
|
+
if isinstance(e, TencentCloudSDKException):
|
|
11896
|
+
raise
|
|
11897
|
+
else:
|
|
11898
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
11899
|
+
|
|
11900
|
+
|
|
10290
11901
|
def UpdateWorkflowOwner(self, request):
|
|
10291
11902
|
"""修改工作流责任人
|
|
10292
11903
|
|