tencentcloud-sdk-wedata 3.0.756 → 3.0.758
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210820/client.rb +1711 -30
- data/lib/v20210820/models.rb +4936 -148
- metadata +2 -2
data/lib/v20210820/client.rb
CHANGED
@@ -731,6 +731,30 @@ module TencentCloud
|
|
731
731
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
732
732
|
end
|
733
733
|
|
734
|
+
# 新建用户自定义函数组件检查
|
735
|
+
|
736
|
+
# @param request: Request instance for CheckCustomFunctionPremise.
|
737
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::CheckCustomFunctionPremiseRequest`
|
738
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::CheckCustomFunctionPremiseResponse`
|
739
|
+
def CheckCustomFunctionPremise(request)
|
740
|
+
body = send_request('CheckCustomFunctionPremise', request.serialize)
|
741
|
+
response = JSON.parse(body)
|
742
|
+
if response['Response'].key?('Error') == false
|
743
|
+
model = CheckCustomFunctionPremiseResponse.new
|
744
|
+
model.deserialize(response['Response'])
|
745
|
+
model
|
746
|
+
else
|
747
|
+
code = response['Response']['Error']['Code']
|
748
|
+
message = response['Response']['Error']['Message']
|
749
|
+
reqid = response['Response']['RequestId']
|
750
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
751
|
+
end
|
752
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
753
|
+
raise e
|
754
|
+
rescue StandardError => e
|
755
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
756
|
+
end
|
757
|
+
|
734
758
|
# 检查规则名称是否重复
|
735
759
|
|
736
760
|
# @param request: Request instance for CheckDuplicateRuleName.
|
@@ -899,6 +923,30 @@ module TencentCloud
|
|
899
923
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
900
924
|
end
|
901
925
|
|
926
|
+
# 清空回收站任务
|
927
|
+
|
928
|
+
# @param request: Request instance for ClearRecycleTask.
|
929
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::ClearRecycleTaskRequest`
|
930
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::ClearRecycleTaskResponse`
|
931
|
+
def ClearRecycleTask(request)
|
932
|
+
body = send_request('ClearRecycleTask', request.serialize)
|
933
|
+
response = JSON.parse(body)
|
934
|
+
if response['Response'].key?('Error') == false
|
935
|
+
model = ClearRecycleTaskResponse.new
|
936
|
+
model.deserialize(response['Response'])
|
937
|
+
model
|
938
|
+
else
|
939
|
+
code = response['Response']['Error']['Code']
|
940
|
+
message = response['Response']['Error']['Message']
|
941
|
+
reqid = response['Response']['RequestId']
|
942
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
943
|
+
end
|
944
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
945
|
+
raise e
|
946
|
+
rescue StandardError => e
|
947
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
948
|
+
end
|
949
|
+
|
902
950
|
# 提交数据导出任务
|
903
951
|
|
904
952
|
# @param request: Request instance for CommitExportTask.
|
@@ -995,6 +1043,54 @@ module TencentCloud
|
|
995
1043
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
996
1044
|
end
|
997
1045
|
|
1046
|
+
# 工作流版本提交
|
1047
|
+
|
1048
|
+
# @param request: Request instance for CommitWorkflow.
|
1049
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::CommitWorkflowRequest`
|
1050
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::CommitWorkflowResponse`
|
1051
|
+
def CommitWorkflow(request)
|
1052
|
+
body = send_request('CommitWorkflow', request.serialize)
|
1053
|
+
response = JSON.parse(body)
|
1054
|
+
if response['Response'].key?('Error') == false
|
1055
|
+
model = CommitWorkflowResponse.new
|
1056
|
+
model.deserialize(response['Response'])
|
1057
|
+
model
|
1058
|
+
else
|
1059
|
+
code = response['Response']['Error']['Code']
|
1060
|
+
message = response['Response']['Error']['Message']
|
1061
|
+
reqid = response['Response']['RequestId']
|
1062
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1063
|
+
end
|
1064
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1065
|
+
raise e
|
1066
|
+
rescue StandardError => e
|
1067
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1068
|
+
end
|
1069
|
+
|
1070
|
+
# 对比任务版本
|
1071
|
+
|
1072
|
+
# @param request: Request instance for CompareDsTaskVersionInfo.
|
1073
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::CompareDsTaskVersionInfoRequest`
|
1074
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::CompareDsTaskVersionInfoResponse`
|
1075
|
+
def CompareDsTaskVersionInfo(request)
|
1076
|
+
body = send_request('CompareDsTaskVersionInfo', request.serialize)
|
1077
|
+
response = JSON.parse(body)
|
1078
|
+
if response['Response'].key?('Error') == false
|
1079
|
+
model = CompareDsTaskVersionInfoResponse.new
|
1080
|
+
model.deserialize(response['Response'])
|
1081
|
+
model
|
1082
|
+
else
|
1083
|
+
code = response['Response']['Error']['Code']
|
1084
|
+
message = response['Response']['Error']['Message']
|
1085
|
+
reqid = response['Response']['RequestId']
|
1086
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1087
|
+
end
|
1088
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1089
|
+
raise e
|
1090
|
+
rescue StandardError => e
|
1091
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1092
|
+
end
|
1093
|
+
|
998
1094
|
# 复制任务Ds
|
999
1095
|
|
1000
1096
|
# @param request: Request instance for CopyTaskDs.
|
@@ -1019,6 +1115,30 @@ module TencentCloud
|
|
1019
1115
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1020
1116
|
end
|
1021
1117
|
|
1118
|
+
# 复制工作流
|
1119
|
+
|
1120
|
+
# @param request: Request instance for CopyWorkflowDs.
|
1121
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::CopyWorkflowDsRequest`
|
1122
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::CopyWorkflowDsResponse`
|
1123
|
+
def CopyWorkflowDs(request)
|
1124
|
+
body = send_request('CopyWorkflowDs', request.serialize)
|
1125
|
+
response = JSON.parse(body)
|
1126
|
+
if response['Response'].key?('Error') == false
|
1127
|
+
model = CopyWorkflowDsResponse.new
|
1128
|
+
model.deserialize(response['Response'])
|
1129
|
+
model
|
1130
|
+
else
|
1131
|
+
code = response['Response']['Error']['Code']
|
1132
|
+
message = response['Response']['Error']['Message']
|
1133
|
+
reqid = response['Response']['RequestId']
|
1134
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1135
|
+
end
|
1136
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1137
|
+
raise e
|
1138
|
+
rescue StandardError => e
|
1139
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1140
|
+
end
|
1141
|
+
|
1022
1142
|
# 统计任务实例状态
|
1023
1143
|
|
1024
1144
|
# @param request: Request instance for CountOpsInstanceState.
|
@@ -1067,6 +1187,30 @@ module TencentCloud
|
|
1067
1187
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1068
1188
|
end
|
1069
1189
|
|
1190
|
+
# 创建用户数据开发浏览历史
|
1191
|
+
|
1192
|
+
# @param request: Request instance for CreateBrowsingHistory.
|
1193
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::CreateBrowsingHistoryRequest`
|
1194
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::CreateBrowsingHistoryResponse`
|
1195
|
+
def CreateBrowsingHistory(request)
|
1196
|
+
body = send_request('CreateBrowsingHistory', request.serialize)
|
1197
|
+
response = JSON.parse(body)
|
1198
|
+
if response['Response'].key?('Error') == false
|
1199
|
+
model = CreateBrowsingHistoryResponse.new
|
1200
|
+
model.deserialize(response['Response'])
|
1201
|
+
model
|
1202
|
+
else
|
1203
|
+
code = response['Response']['Error']['Code']
|
1204
|
+
message = response['Response']['Error']['Message']
|
1205
|
+
reqid = response['Response']['RequestId']
|
1206
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1207
|
+
end
|
1208
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1209
|
+
raise e
|
1210
|
+
rescue StandardError => e
|
1211
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1212
|
+
end
|
1213
|
+
|
1070
1214
|
# 创建用户自定义函数
|
1071
1215
|
|
1072
1216
|
# @param request: Request instance for CreateCustomFunction.
|
@@ -1309,6 +1453,30 @@ module TencentCloud
|
|
1309
1453
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1310
1454
|
end
|
1311
1455
|
|
1456
|
+
# 创建任务连接
|
1457
|
+
|
1458
|
+
# @param request: Request instance for CreateLink.
|
1459
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::CreateLinkRequest`
|
1460
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::CreateLinkResponse`
|
1461
|
+
def CreateLink(request)
|
1462
|
+
body = send_request('CreateLink', request.serialize)
|
1463
|
+
response = JSON.parse(body)
|
1464
|
+
if response['Response'].key?('Error') == false
|
1465
|
+
model = CreateLinkResponse.new
|
1466
|
+
model.deserialize(response['Response'])
|
1467
|
+
model
|
1468
|
+
else
|
1469
|
+
code = response['Response']['Error']['Code']
|
1470
|
+
message = response['Response']['Error']['Message']
|
1471
|
+
reqid = response['Response']['RequestId']
|
1472
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1473
|
+
end
|
1474
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1475
|
+
raise e
|
1476
|
+
rescue StandardError => e
|
1477
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1478
|
+
end
|
1479
|
+
|
1312
1480
|
# 创建离线任务
|
1313
1481
|
|
1314
1482
|
# @param request: Request instance for CreateOfflineTask.
|
@@ -1429,6 +1597,30 @@ module TencentCloud
|
|
1429
1597
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1430
1598
|
end
|
1431
1599
|
|
1600
|
+
# 资源管理-创建资源目录
|
1601
|
+
|
1602
|
+
# @param request: Request instance for CreateResourceDirectory.
|
1603
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::CreateResourceDirectoryRequest`
|
1604
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::CreateResourceDirectoryResponse`
|
1605
|
+
def CreateResourceDirectory(request)
|
1606
|
+
body = send_request('CreateResourceDirectory', request.serialize)
|
1607
|
+
response = JSON.parse(body)
|
1608
|
+
if response['Response'].key?('Error') == false
|
1609
|
+
model = CreateResourceDirectoryResponse.new
|
1610
|
+
model.deserialize(response['Response'])
|
1611
|
+
model
|
1612
|
+
else
|
1613
|
+
code = response['Response']['Error']['Code']
|
1614
|
+
message = response['Response']['Error']['Message']
|
1615
|
+
reqid = response['Response']['RequestId']
|
1616
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1617
|
+
end
|
1618
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1619
|
+
raise e
|
1620
|
+
rescue StandardError => e
|
1621
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1622
|
+
end
|
1623
|
+
|
1432
1624
|
# 文件路径的根目录为 /datastudio/resource,如果要在根目录下创建 aaa 文件夹,FilePath的值应该为 /datastudio/resource,如果根目录下已经创建了 aaa 文件夹,要在 aaa 下创建 bbb 文件夹,FilePath的值应该为 /datastudio/resource/aaa
|
1433
1625
|
|
1434
1626
|
# @param request: Request instance for CreateResourcePath.
|
@@ -1791,6 +1983,30 @@ module TencentCloud
|
|
1791
1983
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1792
1984
|
end
|
1793
1985
|
|
1986
|
+
# 创建工作流
|
1987
|
+
|
1988
|
+
# @param request: Request instance for CreateWorkflowDs.
|
1989
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::CreateWorkflowDsRequest`
|
1990
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::CreateWorkflowDsResponse`
|
1991
|
+
def CreateWorkflowDs(request)
|
1992
|
+
body = send_request('CreateWorkflowDs', request.serialize)
|
1993
|
+
response = JSON.parse(body)
|
1994
|
+
if response['Response'].key?('Error') == false
|
1995
|
+
model = CreateWorkflowDsResponse.new
|
1996
|
+
model.deserialize(response['Response'])
|
1997
|
+
model
|
1998
|
+
else
|
1999
|
+
code = response['Response']['Error']['Code']
|
2000
|
+
message = response['Response']['Error']['Message']
|
2001
|
+
reqid = response['Response']['RequestId']
|
2002
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2003
|
+
end
|
2004
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2005
|
+
raise e
|
2006
|
+
rescue StandardError => e
|
2007
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2008
|
+
end
|
2009
|
+
|
1794
2010
|
# 拉取dag实例
|
1795
2011
|
|
1796
2012
|
# @param request: Request instance for DagInstances.
|
@@ -1839,6 +2055,30 @@ module TencentCloud
|
|
1839
2055
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1840
2056
|
end
|
1841
2057
|
|
2058
|
+
# 批量删除工作流
|
2059
|
+
|
2060
|
+
# @param request: Request instance for DeleteBatchWorkflowDs.
|
2061
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DeleteBatchWorkflowDsRequest`
|
2062
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DeleteBatchWorkflowDsResponse`
|
2063
|
+
def DeleteBatchWorkflowDs(request)
|
2064
|
+
body = send_request('DeleteBatchWorkflowDs', request.serialize)
|
2065
|
+
response = JSON.parse(body)
|
2066
|
+
if response['Response'].key?('Error') == false
|
2067
|
+
model = DeleteBatchWorkflowDsResponse.new
|
2068
|
+
model.deserialize(response['Response'])
|
2069
|
+
model
|
2070
|
+
else
|
2071
|
+
code = response['Response']['Error']['Code']
|
2072
|
+
message = response['Response']['Error']['Message']
|
2073
|
+
reqid = response['Response']['RequestId']
|
2074
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2075
|
+
end
|
2076
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2077
|
+
raise e
|
2078
|
+
rescue StandardError => e
|
2079
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2080
|
+
end
|
2081
|
+
|
1842
2082
|
# 删除用户自定义函数
|
1843
2083
|
|
1844
2084
|
# @param request: Request instance for DeleteCustomFunction.
|
@@ -1888,6 +2128,30 @@ module TencentCloud
|
|
1888
2128
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1889
2129
|
end
|
1890
2130
|
|
2131
|
+
# 删除事件
|
2132
|
+
|
2133
|
+
# @param request: Request instance for DeleteDsEvent.
|
2134
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DeleteDsEventRequest`
|
2135
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DeleteDsEventResponse`
|
2136
|
+
def DeleteDsEvent(request)
|
2137
|
+
body = send_request('DeleteDsEvent', request.serialize)
|
2138
|
+
response = JSON.parse(body)
|
2139
|
+
if response['Response'].key?('Error') == false
|
2140
|
+
model = DeleteDsEventResponse.new
|
2141
|
+
model.deserialize(response['Response'])
|
2142
|
+
model
|
2143
|
+
else
|
2144
|
+
code = response['Response']['Error']['Code']
|
2145
|
+
message = response['Response']['Error']['Message']
|
2146
|
+
reqid = response['Response']['RequestId']
|
2147
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2148
|
+
end
|
2149
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2150
|
+
raise e
|
2151
|
+
rescue StandardError => e
|
2152
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2153
|
+
end
|
2154
|
+
|
1891
2155
|
# 删除事件监听者
|
1892
2156
|
|
1893
2157
|
# @param request: Request instance for DeleteDsEventListener.
|
@@ -1960,6 +2224,30 @@ module TencentCloud
|
|
1960
2224
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1961
2225
|
end
|
1962
2226
|
|
2227
|
+
# 通过任务ID删除所有事件
|
2228
|
+
|
2229
|
+
# @param request: Request instance for DeleteEventListenerByTaskId.
|
2230
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DeleteEventListenerByTaskIdRequest`
|
2231
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DeleteEventListenerByTaskIdResponse`
|
2232
|
+
def DeleteEventListenerByTaskId(request)
|
2233
|
+
body = send_request('DeleteEventListenerByTaskId', request.serialize)
|
2234
|
+
response = JSON.parse(body)
|
2235
|
+
if response['Response'].key?('Error') == false
|
2236
|
+
model = DeleteEventListenerByTaskIdResponse.new
|
2237
|
+
model.deserialize(response['Response'])
|
2238
|
+
model
|
2239
|
+
else
|
2240
|
+
code = response['Response']['Error']['Code']
|
2241
|
+
message = response['Response']['Error']['Message']
|
2242
|
+
reqid = response['Response']['RequestId']
|
2243
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2244
|
+
end
|
2245
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2246
|
+
raise e
|
2247
|
+
rescue StandardError => e
|
2248
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2249
|
+
end
|
2250
|
+
|
1963
2251
|
# 删除文件
|
1964
2252
|
|
1965
2253
|
# @param request: Request instance for DeleteFile.
|
@@ -2225,6 +2513,54 @@ module TencentCloud
|
|
2225
2513
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2226
2514
|
end
|
2227
2515
|
|
2516
|
+
# 批量删除任务提交记录列表
|
2517
|
+
|
2518
|
+
# @param request: Request instance for DeleteRecordList.
|
2519
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DeleteRecordListRequest`
|
2520
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DeleteRecordListResponse`
|
2521
|
+
def DeleteRecordList(request)
|
2522
|
+
body = send_request('DeleteRecordList', request.serialize)
|
2523
|
+
response = JSON.parse(body)
|
2524
|
+
if response['Response'].key?('Error') == false
|
2525
|
+
model = DeleteRecordListResponse.new
|
2526
|
+
model.deserialize(response['Response'])
|
2527
|
+
model
|
2528
|
+
else
|
2529
|
+
code = response['Response']['Error']['Code']
|
2530
|
+
message = response['Response']['Error']['Message']
|
2531
|
+
reqid = response['Response']['RequestId']
|
2532
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2533
|
+
end
|
2534
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2535
|
+
raise e
|
2536
|
+
rescue StandardError => e
|
2537
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2538
|
+
end
|
2539
|
+
|
2540
|
+
# 删除回收站任务
|
2541
|
+
|
2542
|
+
# @param request: Request instance for DeleteRecycleTask.
|
2543
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DeleteRecycleTaskRequest`
|
2544
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DeleteRecycleTaskResponse`
|
2545
|
+
def DeleteRecycleTask(request)
|
2546
|
+
body = send_request('DeleteRecycleTask', request.serialize)
|
2547
|
+
response = JSON.parse(body)
|
2548
|
+
if response['Response'].key?('Error') == false
|
2549
|
+
model = DeleteRecycleTaskResponse.new
|
2550
|
+
model.deserialize(response['Response'])
|
2551
|
+
model
|
2552
|
+
else
|
2553
|
+
code = response['Response']['Error']['Code']
|
2554
|
+
message = response['Response']['Error']['Message']
|
2555
|
+
reqid = response['Response']['RequestId']
|
2556
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2557
|
+
end
|
2558
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2559
|
+
raise e
|
2560
|
+
rescue StandardError => e
|
2561
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2562
|
+
end
|
2563
|
+
|
2228
2564
|
# 资源管理删除资源
|
2229
2565
|
|
2230
2566
|
# @param request: Request instance for DeleteResource.
|
@@ -2297,6 +2633,30 @@ module TencentCloud
|
|
2297
2633
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2298
2634
|
end
|
2299
2635
|
|
2636
|
+
# 资源管理-删除资源目录
|
2637
|
+
|
2638
|
+
# @param request: Request instance for DeleteResourcePath.
|
2639
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DeleteResourcePathRequest`
|
2640
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DeleteResourcePathResponse`
|
2641
|
+
def DeleteResourcePath(request)
|
2642
|
+
body = send_request('DeleteResourcePath', request.serialize)
|
2643
|
+
response = JSON.parse(body)
|
2644
|
+
if response['Response'].key?('Error') == false
|
2645
|
+
model = DeleteResourcePathResponse.new
|
2646
|
+
model.deserialize(response['Response'])
|
2647
|
+
model
|
2648
|
+
else
|
2649
|
+
code = response['Response']['Error']['Code']
|
2650
|
+
message = response['Response']['Error']['Message']
|
2651
|
+
reqid = response['Response']['RequestId']
|
2652
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2653
|
+
end
|
2654
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2655
|
+
raise e
|
2656
|
+
rescue StandardError => e
|
2657
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2658
|
+
end
|
2659
|
+
|
2300
2660
|
# 删除质量规则接口
|
2301
2661
|
|
2302
2662
|
# @param request: Request instance for DeleteRule.
|
@@ -2610,6 +2970,30 @@ module TencentCloud
|
|
2610
2970
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2611
2971
|
end
|
2612
2972
|
|
2973
|
+
# 查询所有参数
|
2974
|
+
|
2975
|
+
# @param request: Request instance for DescribeAllParamDs.
|
2976
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeAllParamDsRequest`
|
2977
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeAllParamDsResponse`
|
2978
|
+
def DescribeAllParamDs(request)
|
2979
|
+
body = send_request('DescribeAllParamDs', request.serialize)
|
2980
|
+
response = JSON.parse(body)
|
2981
|
+
if response['Response'].key?('Error') == false
|
2982
|
+
model = DescribeAllParamDsResponse.new
|
2983
|
+
model.deserialize(response['Response'])
|
2984
|
+
model
|
2985
|
+
else
|
2986
|
+
code = response['Response']['Error']['Code']
|
2987
|
+
message = response['Response']['Error']['Message']
|
2988
|
+
reqid = response['Response']['RequestId']
|
2989
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2990
|
+
end
|
2991
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2992
|
+
raise e
|
2993
|
+
rescue StandardError => e
|
2994
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2995
|
+
end
|
2996
|
+
|
2613
2997
|
# 获取所有任务类型
|
2614
2998
|
|
2615
2999
|
# @param request: Request instance for DescribeAllTaskType.
|
@@ -2874,6 +3258,30 @@ module TencentCloud
|
|
2874
3258
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2875
3259
|
end
|
2876
3260
|
|
3261
|
+
# 批量获取etl测试运行任务执行状态和日志
|
3262
|
+
|
3263
|
+
# @param request: Request instance for DescribeBatchTestRun.
|
3264
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeBatchTestRunRequest`
|
3265
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeBatchTestRunResponse`
|
3266
|
+
def DescribeBatchTestRun(request)
|
3267
|
+
body = send_request('DescribeBatchTestRun', request.serialize)
|
3268
|
+
response = JSON.parse(body)
|
3269
|
+
if response['Response'].key?('Error') == false
|
3270
|
+
model = DescribeBatchTestRunResponse.new
|
3271
|
+
model.deserialize(response['Response'])
|
3272
|
+
model
|
3273
|
+
else
|
3274
|
+
code = response['Response']['Error']['Code']
|
3275
|
+
message = response['Response']['Error']['Message']
|
3276
|
+
reqid = response['Response']['RequestId']
|
3277
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3278
|
+
end
|
3279
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3280
|
+
raise e
|
3281
|
+
rescue StandardError => e
|
3282
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3283
|
+
end
|
3284
|
+
|
2877
3285
|
# 智能运维-事件列表-所属任务/基线过滤列表
|
2878
3286
|
|
2879
3287
|
# @param request: Request instance for DescribeBelongTo.
|
@@ -3234,6 +3642,30 @@ module TencentCloud
|
|
3234
3642
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3235
3643
|
end
|
3236
3644
|
|
3645
|
+
# 查询函数版本列表
|
3646
|
+
|
3647
|
+
# @param request: Request instance for DescribeCustomFunctionVersionList.
|
3648
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeCustomFunctionVersionListRequest`
|
3649
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeCustomFunctionVersionListResponse`
|
3650
|
+
def DescribeCustomFunctionVersionList(request)
|
3651
|
+
body = send_request('DescribeCustomFunctionVersionList', request.serialize)
|
3652
|
+
response = JSON.parse(body)
|
3653
|
+
if response['Response'].key?('Error') == false
|
3654
|
+
model = DescribeCustomFunctionVersionListResponse.new
|
3655
|
+
model.deserialize(response['Response'])
|
3656
|
+
model
|
3657
|
+
else
|
3658
|
+
code = response['Response']['Error']['Code']
|
3659
|
+
message = response['Response']['Error']['Message']
|
3660
|
+
reqid = response['Response']['RequestId']
|
3661
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3662
|
+
end
|
3663
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3664
|
+
raise e
|
3665
|
+
rescue StandardError => e
|
3666
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3667
|
+
end
|
3668
|
+
|
3237
3669
|
# 查询数据来源列表
|
3238
3670
|
|
3239
3671
|
# @param request: Request instance for DescribeDataBases.
|
@@ -3404,6 +3836,30 @@ module TencentCloud
|
|
3404
3836
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3405
3837
|
end
|
3406
3838
|
|
3839
|
+
# 获取数据表导入状态
|
3840
|
+
|
3841
|
+
# @param request: Request instance for DescribeDataTableImportProgress.
|
3842
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDataTableImportProgressRequest`
|
3843
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDataTableImportProgressResponse`
|
3844
|
+
def DescribeDataTableImportProgress(request)
|
3845
|
+
body = send_request('DescribeDataTableImportProgress', request.serialize)
|
3846
|
+
response = JSON.parse(body)
|
3847
|
+
if response['Response'].key?('Error') == false
|
3848
|
+
model = DescribeDataTableImportProgressResponse.new
|
3849
|
+
model.deserialize(response['Response'])
|
3850
|
+
model
|
3851
|
+
else
|
3852
|
+
code = response['Response']['Error']['Code']
|
3853
|
+
message = response['Response']['Error']['Message']
|
3854
|
+
reqid = response['Response']['RequestId']
|
3855
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3856
|
+
end
|
3857
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3858
|
+
raise e
|
3859
|
+
rescue StandardError => e
|
3860
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3861
|
+
end
|
3862
|
+
|
3407
3863
|
# 获取字段类型列表
|
3408
3864
|
|
3409
3865
|
# @param request: Request instance for DescribeDataTypes.
|
@@ -3838,6 +4294,126 @@ module TencentCloud
|
|
3838
4294
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3839
4295
|
end
|
3840
4296
|
|
4297
|
+
# 事件管理-查询事件详情
|
4298
|
+
|
4299
|
+
# @param request: Request instance for DescribeDsEventDetail.
|
4300
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDsEventDetailRequest`
|
4301
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDsEventDetailResponse`
|
4302
|
+
def DescribeDsEventDetail(request)
|
4303
|
+
body = send_request('DescribeDsEventDetail', request.serialize)
|
4304
|
+
response = JSON.parse(body)
|
4305
|
+
if response['Response'].key?('Error') == false
|
4306
|
+
model = DescribeDsEventDetailResponse.new
|
4307
|
+
model.deserialize(response['Response'])
|
4308
|
+
model
|
4309
|
+
else
|
4310
|
+
code = response['Response']['Error']['Code']
|
4311
|
+
message = response['Response']['Error']['Message']
|
4312
|
+
reqid = response['Response']['RequestId']
|
4313
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4314
|
+
end
|
4315
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4316
|
+
raise e
|
4317
|
+
rescue StandardError => e
|
4318
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4319
|
+
end
|
4320
|
+
|
4321
|
+
# 查询事件监听者信息
|
4322
|
+
|
4323
|
+
# @param request: Request instance for DescribeDsEventListener.
|
4324
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDsEventListenerRequest`
|
4325
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDsEventListenerResponse`
|
4326
|
+
def DescribeDsEventListener(request)
|
4327
|
+
body = send_request('DescribeDsEventListener', request.serialize)
|
4328
|
+
response = JSON.parse(body)
|
4329
|
+
if response['Response'].key?('Error') == false
|
4330
|
+
model = DescribeDsEventListenerResponse.new
|
4331
|
+
model.deserialize(response['Response'])
|
4332
|
+
model
|
4333
|
+
else
|
4334
|
+
code = response['Response']['Error']['Code']
|
4335
|
+
message = response['Response']['Error']['Message']
|
4336
|
+
reqid = response['Response']['RequestId']
|
4337
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4338
|
+
end
|
4339
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4340
|
+
raise e
|
4341
|
+
rescue StandardError => e
|
4342
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4343
|
+
end
|
4344
|
+
|
4345
|
+
# 查询事件监听者列表
|
4346
|
+
|
4347
|
+
# @param request: Request instance for DescribeDsEventListenerList.
|
4348
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDsEventListenerListRequest`
|
4349
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDsEventListenerListResponse`
|
4350
|
+
def DescribeDsEventListenerList(request)
|
4351
|
+
body = send_request('DescribeDsEventListenerList', request.serialize)
|
4352
|
+
response = JSON.parse(body)
|
4353
|
+
if response['Response'].key?('Error') == false
|
4354
|
+
model = DescribeDsEventListenerListResponse.new
|
4355
|
+
model.deserialize(response['Response'])
|
4356
|
+
model
|
4357
|
+
else
|
4358
|
+
code = response['Response']['Error']['Code']
|
4359
|
+
message = response['Response']['Error']['Message']
|
4360
|
+
reqid = response['Response']['RequestId']
|
4361
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4362
|
+
end
|
4363
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4364
|
+
raise e
|
4365
|
+
rescue StandardError => e
|
4366
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4367
|
+
end
|
4368
|
+
|
4369
|
+
# 查询事件发布者信息
|
4370
|
+
|
4371
|
+
# @param request: Request instance for DescribeDsEventPublisher.
|
4372
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDsEventPublisherRequest`
|
4373
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDsEventPublisherResponse`
|
4374
|
+
def DescribeDsEventPublisher(request)
|
4375
|
+
body = send_request('DescribeDsEventPublisher', request.serialize)
|
4376
|
+
response = JSON.parse(body)
|
4377
|
+
if response['Response'].key?('Error') == false
|
4378
|
+
model = DescribeDsEventPublisherResponse.new
|
4379
|
+
model.deserialize(response['Response'])
|
4380
|
+
model
|
4381
|
+
else
|
4382
|
+
code = response['Response']['Error']['Code']
|
4383
|
+
message = response['Response']['Error']['Message']
|
4384
|
+
reqid = response['Response']['RequestId']
|
4385
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4386
|
+
end
|
4387
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4388
|
+
raise e
|
4389
|
+
rescue StandardError => e
|
4390
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4391
|
+
end
|
4392
|
+
|
4393
|
+
# 查询事件发布者列表
|
4394
|
+
|
4395
|
+
# @param request: Request instance for DescribeDsEventPublisherList.
|
4396
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDsEventPublisherListRequest`
|
4397
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDsEventPublisherListResponse`
|
4398
|
+
def DescribeDsEventPublisherList(request)
|
4399
|
+
body = send_request('DescribeDsEventPublisherList', request.serialize)
|
4400
|
+
response = JSON.parse(body)
|
4401
|
+
if response['Response'].key?('Error') == false
|
4402
|
+
model = DescribeDsEventPublisherListResponse.new
|
4403
|
+
model.deserialize(response['Response'])
|
4404
|
+
model
|
4405
|
+
else
|
4406
|
+
code = response['Response']['Error']['Code']
|
4407
|
+
message = response['Response']['Error']['Message']
|
4408
|
+
reqid = response['Response']['RequestId']
|
4409
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4410
|
+
end
|
4411
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4412
|
+
raise e
|
4413
|
+
rescue StandardError => e
|
4414
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4415
|
+
end
|
4416
|
+
|
3841
4417
|
# 查询目录树
|
3842
4418
|
|
3843
4419
|
# @param request: Request instance for DescribeDsFolderTree.
|
@@ -3886,6 +4462,54 @@ module TencentCloud
|
|
3886
4462
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3887
4463
|
end
|
3888
4464
|
|
4465
|
+
# 获取任务最新版本
|
4466
|
+
|
4467
|
+
# @param request: Request instance for DescribeDsLatestTaskVersionInfo.
|
4468
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDsLatestTaskVersionInfoRequest`
|
4469
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDsLatestTaskVersionInfoResponse`
|
4470
|
+
def DescribeDsLatestTaskVersionInfo(request)
|
4471
|
+
body = send_request('DescribeDsLatestTaskVersionInfo', request.serialize)
|
4472
|
+
response = JSON.parse(body)
|
4473
|
+
if response['Response'].key?('Error') == false
|
4474
|
+
model = DescribeDsLatestTaskVersionInfoResponse.new
|
4475
|
+
model.deserialize(response['Response'])
|
4476
|
+
model
|
4477
|
+
else
|
4478
|
+
code = response['Response']['Error']['Code']
|
4479
|
+
message = response['Response']['Error']['Message']
|
4480
|
+
reqid = response['Response']['RequestId']
|
4481
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4482
|
+
end
|
4483
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4484
|
+
raise e
|
4485
|
+
rescue StandardError => e
|
4486
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4487
|
+
end
|
4488
|
+
|
4489
|
+
# 根据工作流id查询保存未提交任务
|
4490
|
+
|
4491
|
+
# @param request: Request instance for DescribeDsNotSubmitTasksAndCanRunByWorkflow.
|
4492
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDsNotSubmitTasksAndCanRunByWorkflowRequest`
|
4493
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDsNotSubmitTasksAndCanRunByWorkflowResponse`
|
4494
|
+
def DescribeDsNotSubmitTasksAndCanRunByWorkflow(request)
|
4495
|
+
body = send_request('DescribeDsNotSubmitTasksAndCanRunByWorkflow', request.serialize)
|
4496
|
+
response = JSON.parse(body)
|
4497
|
+
if response['Response'].key?('Error') == false
|
4498
|
+
model = DescribeDsNotSubmitTasksAndCanRunByWorkflowResponse.new
|
4499
|
+
model.deserialize(response['Response'])
|
4500
|
+
model
|
4501
|
+
else
|
4502
|
+
code = response['Response']['Error']['Code']
|
4503
|
+
message = response['Response']['Error']['Message']
|
4504
|
+
reqid = response['Response']['RequestId']
|
4505
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4506
|
+
end
|
4507
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4508
|
+
raise e
|
4509
|
+
rescue StandardError => e
|
4510
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4511
|
+
end
|
4512
|
+
|
3889
4513
|
# 查询父目录树,用于工作流、任务定位
|
3890
4514
|
|
3891
4515
|
# @param request: Request instance for DescribeDsParentFolderTree.
|
@@ -3910,6 +4534,54 @@ module TencentCloud
|
|
3910
4534
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3911
4535
|
end
|
3912
4536
|
|
4537
|
+
# 查看任务版本详细信息
|
4538
|
+
|
4539
|
+
# @param request: Request instance for DescribeDsTaskVersionInfo.
|
4540
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDsTaskVersionInfoRequest`
|
4541
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDsTaskVersionInfoResponse`
|
4542
|
+
def DescribeDsTaskVersionInfo(request)
|
4543
|
+
body = send_request('DescribeDsTaskVersionInfo', request.serialize)
|
4544
|
+
response = JSON.parse(body)
|
4545
|
+
if response['Response'].key?('Error') == false
|
4546
|
+
model = DescribeDsTaskVersionInfoResponse.new
|
4547
|
+
model.deserialize(response['Response'])
|
4548
|
+
model
|
4549
|
+
else
|
4550
|
+
code = response['Response']['Error']['Code']
|
4551
|
+
message = response['Response']['Error']['Message']
|
4552
|
+
reqid = response['Response']['RequestId']
|
4553
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4554
|
+
end
|
4555
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4556
|
+
raise e
|
4557
|
+
rescue StandardError => e
|
4558
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4559
|
+
end
|
4560
|
+
|
4561
|
+
# 拉取任务版本列表
|
4562
|
+
|
4563
|
+
# @param request: Request instance for DescribeDsTaskVersionList.
|
4564
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDsTaskVersionListRequest`
|
4565
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDsTaskVersionListResponse`
|
4566
|
+
def DescribeDsTaskVersionList(request)
|
4567
|
+
body = send_request('DescribeDsTaskVersionList', request.serialize)
|
4568
|
+
response = JSON.parse(body)
|
4569
|
+
if response['Response'].key?('Error') == false
|
4570
|
+
model = DescribeDsTaskVersionListResponse.new
|
4571
|
+
model.deserialize(response['Response'])
|
4572
|
+
model
|
4573
|
+
else
|
4574
|
+
code = response['Response']['Error']['Code']
|
4575
|
+
message = response['Response']['Error']['Message']
|
4576
|
+
reqid = response['Response']['RequestId']
|
4577
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4578
|
+
end
|
4579
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4580
|
+
raise e
|
4581
|
+
rescue StandardError => e
|
4582
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4583
|
+
end
|
4584
|
+
|
3913
4585
|
# 获取数据同步任务类型
|
3914
4586
|
|
3915
4587
|
# @param request: Request instance for DescribeEtlTaskType.
|
@@ -4174,6 +4846,30 @@ module TencentCloud
|
|
4174
4846
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4175
4847
|
end
|
4176
4848
|
|
4849
|
+
# 获取执行日志
|
4850
|
+
|
4851
|
+
# @param request: Request instance for DescribeExecutionLog.
|
4852
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeExecutionLogRequest`
|
4853
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeExecutionLogResponse`
|
4854
|
+
def DescribeExecutionLog(request)
|
4855
|
+
body = send_request('DescribeExecutionLog', request.serialize)
|
4856
|
+
response = JSON.parse(body)
|
4857
|
+
if response['Response'].key?('Error') == false
|
4858
|
+
model = DescribeExecutionLogResponse.new
|
4859
|
+
model.deserialize(response['Response'])
|
4860
|
+
model
|
4861
|
+
else
|
4862
|
+
code = response['Response']['Error']['Code']
|
4863
|
+
message = response['Response']['Error']['Message']
|
4864
|
+
reqid = response['Response']['RequestId']
|
4865
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4866
|
+
end
|
4867
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4868
|
+
raise e
|
4869
|
+
rescue StandardError => e
|
4870
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4871
|
+
end
|
4872
|
+
|
4177
4873
|
# 查询父任务数据源信息Ds
|
4178
4874
|
|
4179
4875
|
# @param request: Request instance for DescribeFatherDatasourceInfoDs.
|
@@ -4246,6 +4942,30 @@ module TencentCloud
|
|
4246
4942
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4247
4943
|
end
|
4248
4944
|
|
4945
|
+
# 查询开发空间版本列表
|
4946
|
+
|
4947
|
+
# @param request: Request instance for DescribeFileVersions.
|
4948
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeFileVersionsRequest`
|
4949
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeFileVersionsResponse`
|
4950
|
+
def DescribeFileVersions(request)
|
4951
|
+
body = send_request('DescribeFileVersions', request.serialize)
|
4952
|
+
response = JSON.parse(body)
|
4953
|
+
if response['Response'].key?('Error') == false
|
4954
|
+
model = DescribeFileVersionsResponse.new
|
4955
|
+
model.deserialize(response['Response'])
|
4956
|
+
model
|
4957
|
+
else
|
4958
|
+
code = response['Response']['Error']['Code']
|
4959
|
+
message = response['Response']['Error']['Message']
|
4960
|
+
reqid = response['Response']['RequestId']
|
4961
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4962
|
+
end
|
4963
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4964
|
+
raise e
|
4965
|
+
rescue StandardError => e
|
4966
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4967
|
+
end
|
4968
|
+
|
4249
4969
|
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
4250
4970
|
# 拉取文件夹目录
|
4251
4971
|
|
@@ -4344,7 +5064,31 @@ module TencentCloud
|
|
4344
5064
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4345
5065
|
end
|
4346
5066
|
|
4347
|
-
#
|
5067
|
+
# 获取全局工作流信息,用于跨工作流节点拉取租户所有工作流列表
|
5068
|
+
|
5069
|
+
# @param request: Request instance for DescribeGlobalWorkflowDs.
|
5070
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeGlobalWorkflowDsRequest`
|
5071
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeGlobalWorkflowDsResponse`
|
5072
|
+
def DescribeGlobalWorkflowDs(request)
|
5073
|
+
body = send_request('DescribeGlobalWorkflowDs', request.serialize)
|
5074
|
+
response = JSON.parse(body)
|
5075
|
+
if response['Response'].key?('Error') == false
|
5076
|
+
model = DescribeGlobalWorkflowDsResponse.new
|
5077
|
+
model.deserialize(response['Response'])
|
5078
|
+
model
|
5079
|
+
else
|
5080
|
+
code = response['Response']['Error']['Code']
|
5081
|
+
message = response['Response']['Error']['Message']
|
5082
|
+
reqid = response['Response']['RequestId']
|
5083
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5084
|
+
end
|
5085
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5086
|
+
raise e
|
5087
|
+
rescue StandardError => e
|
5088
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5089
|
+
end
|
5090
|
+
|
5091
|
+
# 查询可导入的集成任务
|
4348
5092
|
|
4349
5093
|
# @param request: Request instance for DescribeImportableOfflineTask.
|
4350
5094
|
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeImportableOfflineTaskRequest`
|
@@ -5041,6 +5785,30 @@ module TencentCloud
|
|
5041
5785
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5042
5786
|
end
|
5043
5787
|
|
5788
|
+
# 新获取SQL执行结果
|
5789
|
+
|
5790
|
+
# @param request: Request instance for DescribeNewSqlTaskResult.
|
5791
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeNewSqlTaskResultRequest`
|
5792
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeNewSqlTaskResultResponse`
|
5793
|
+
def DescribeNewSqlTaskResult(request)
|
5794
|
+
body = send_request('DescribeNewSqlTaskResult', request.serialize)
|
5795
|
+
response = JSON.parse(body)
|
5796
|
+
if response['Response'].key?('Error') == false
|
5797
|
+
model = DescribeNewSqlTaskResultResponse.new
|
5798
|
+
model.deserialize(response['Response'])
|
5799
|
+
model
|
5800
|
+
else
|
5801
|
+
code = response['Response']['Error']['Code']
|
5802
|
+
message = response['Response']['Error']['Message']
|
5803
|
+
reqid = response['Response']['RequestId']
|
5804
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5805
|
+
end
|
5806
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5807
|
+
raise e
|
5808
|
+
rescue StandardError => e
|
5809
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5810
|
+
end
|
5811
|
+
|
5044
5812
|
# 获取离线任务长连接Token
|
5045
5813
|
|
5046
5814
|
# @param request: Request instance for DescribeOfflineTaskToken.
|
@@ -5377,6 +6145,30 @@ module TencentCloud
|
|
5377
6145
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5378
6146
|
end
|
5379
6147
|
|
6148
|
+
# 获取工作流画布信息
|
6149
|
+
|
6150
|
+
# @param request: Request instance for DescribeProdWorkflowCanvasInfoDs.
|
6151
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeProdWorkflowCanvasInfoDsRequest`
|
6152
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeProdWorkflowCanvasInfoDsResponse`
|
6153
|
+
def DescribeProdWorkflowCanvasInfoDs(request)
|
6154
|
+
body = send_request('DescribeProdWorkflowCanvasInfoDs', request.serialize)
|
6155
|
+
response = JSON.parse(body)
|
6156
|
+
if response['Response'].key?('Error') == false
|
6157
|
+
model = DescribeProdWorkflowCanvasInfoDsResponse.new
|
6158
|
+
model.deserialize(response['Response'])
|
6159
|
+
model
|
6160
|
+
else
|
6161
|
+
code = response['Response']['Error']['Code']
|
6162
|
+
message = response['Response']['Error']['Message']
|
6163
|
+
reqid = response['Response']['RequestId']
|
6164
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6165
|
+
end
|
6166
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6167
|
+
raise e
|
6168
|
+
rescue StandardError => e
|
6169
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6170
|
+
end
|
6171
|
+
|
5380
6172
|
# 获取项目信息
|
5381
6173
|
|
5382
6174
|
# @param request: Request instance for DescribeProject.
|
@@ -5403,6 +6195,30 @@ module TencentCloud
|
|
5403
6195
|
|
5404
6196
|
# 查询项目全局参数
|
5405
6197
|
|
6198
|
+
# @param request: Request instance for DescribeProjectParamDs.
|
6199
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeProjectParamDsRequest`
|
6200
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeProjectParamDsResponse`
|
6201
|
+
def DescribeProjectParamDs(request)
|
6202
|
+
body = send_request('DescribeProjectParamDs', request.serialize)
|
6203
|
+
response = JSON.parse(body)
|
6204
|
+
if response['Response'].key?('Error') == false
|
6205
|
+
model = DescribeProjectParamDsResponse.new
|
6206
|
+
model.deserialize(response['Response'])
|
6207
|
+
model
|
6208
|
+
else
|
6209
|
+
code = response['Response']['Error']['Code']
|
6210
|
+
message = response['Response']['Error']['Message']
|
6211
|
+
reqid = response['Response']['RequestId']
|
6212
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6213
|
+
end
|
6214
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6215
|
+
raise e
|
6216
|
+
rescue StandardError => e
|
6217
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6218
|
+
end
|
6219
|
+
|
6220
|
+
# 查询项目全局参数
|
6221
|
+
|
5406
6222
|
# @param request: Request instance for DescribeProjectParamDsPage.
|
5407
6223
|
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeProjectParamDsPageRequest`
|
5408
6224
|
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeProjectParamDsPageResponse`
|
@@ -5425,6 +6241,30 @@ module TencentCloud
|
|
5425
6241
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5426
6242
|
end
|
5427
6243
|
|
6244
|
+
# 查询项目参数历史版本
|
6245
|
+
|
6246
|
+
# @param request: Request instance for DescribeProjectParamVersionDs.
|
6247
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeProjectParamVersionDsRequest`
|
6248
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeProjectParamVersionDsResponse`
|
6249
|
+
def DescribeProjectParamVersionDs(request)
|
6250
|
+
body = send_request('DescribeProjectParamVersionDs', request.serialize)
|
6251
|
+
response = JSON.parse(body)
|
6252
|
+
if response['Response'].key?('Error') == false
|
6253
|
+
model = DescribeProjectParamVersionDsResponse.new
|
6254
|
+
model.deserialize(response['Response'])
|
6255
|
+
model
|
6256
|
+
else
|
6257
|
+
code = response['Response']['Error']['Code']
|
6258
|
+
message = response['Response']['Error']['Message']
|
6259
|
+
reqid = response['Response']['RequestId']
|
6260
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6261
|
+
end
|
6262
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6263
|
+
raise e
|
6264
|
+
rescue StandardError => e
|
6265
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6266
|
+
end
|
6267
|
+
|
5428
6268
|
# 拉取项目参数版本详情
|
5429
6269
|
|
5430
6270
|
# @param request: Request instance for DescribeProjectParamVersionInfoDs.
|
@@ -5569,6 +6409,78 @@ module TencentCloud
|
|
5569
6409
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5570
6410
|
end
|
5571
6411
|
|
6412
|
+
# 即席分析-获取任务列表
|
6413
|
+
|
6414
|
+
# @param request: Request instance for DescribeRecordList.
|
6415
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRecordListRequest`
|
6416
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRecordListResponse`
|
6417
|
+
def DescribeRecordList(request)
|
6418
|
+
body = send_request('DescribeRecordList', request.serialize)
|
6419
|
+
response = JSON.parse(body)
|
6420
|
+
if response['Response'].key?('Error') == false
|
6421
|
+
model = DescribeRecordListResponse.new
|
6422
|
+
model.deserialize(response['Response'])
|
6423
|
+
model
|
6424
|
+
else
|
6425
|
+
code = response['Response']['Error']['Code']
|
6426
|
+
message = response['Response']['Error']['Message']
|
6427
|
+
reqid = response['Response']['RequestId']
|
6428
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6429
|
+
end
|
6430
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6431
|
+
raise e
|
6432
|
+
rescue StandardError => e
|
6433
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6434
|
+
end
|
6435
|
+
|
6436
|
+
# 获取回收站任务详情
|
6437
|
+
|
6438
|
+
# @param request: Request instance for DescribeRecycleTaskDetail.
|
6439
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRecycleTaskDetailRequest`
|
6440
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRecycleTaskDetailResponse`
|
6441
|
+
def DescribeRecycleTaskDetail(request)
|
6442
|
+
body = send_request('DescribeRecycleTaskDetail', request.serialize)
|
6443
|
+
response = JSON.parse(body)
|
6444
|
+
if response['Response'].key?('Error') == false
|
6445
|
+
model = DescribeRecycleTaskDetailResponse.new
|
6446
|
+
model.deserialize(response['Response'])
|
6447
|
+
model
|
6448
|
+
else
|
6449
|
+
code = response['Response']['Error']['Code']
|
6450
|
+
message = response['Response']['Error']['Message']
|
6451
|
+
reqid = response['Response']['RequestId']
|
6452
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6453
|
+
end
|
6454
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6455
|
+
raise e
|
6456
|
+
rescue StandardError => e
|
6457
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6458
|
+
end
|
6459
|
+
|
6460
|
+
# 查询回收站任务列表
|
6461
|
+
|
6462
|
+
# @param request: Request instance for DescribeRecycleTaskList.
|
6463
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRecycleTaskListRequest`
|
6464
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRecycleTaskListResponse`
|
6465
|
+
def DescribeRecycleTaskList(request)
|
6466
|
+
body = send_request('DescribeRecycleTaskList', request.serialize)
|
6467
|
+
response = JSON.parse(body)
|
6468
|
+
if response['Response'].key?('Error') == false
|
6469
|
+
model = DescribeRecycleTaskListResponse.new
|
6470
|
+
model.deserialize(response['Response'])
|
6471
|
+
model
|
6472
|
+
else
|
6473
|
+
code = response['Response']['Error']['Code']
|
6474
|
+
message = response['Response']['Error']['Message']
|
6475
|
+
reqid = response['Response']['RequestId']
|
6476
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6477
|
+
end
|
6478
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6479
|
+
raise e
|
6480
|
+
rescue StandardError => e
|
6481
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6482
|
+
end
|
6483
|
+
|
5572
6484
|
# 查询任务实例的关联实例列表
|
5573
6485
|
|
5574
6486
|
# @param request: Request instance for DescribeRelatedInstances.
|
@@ -6364,6 +7276,30 @@ module TencentCloud
|
|
6364
7276
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6365
7277
|
end
|
6366
7278
|
|
7279
|
+
# 获取SQL执行结果
|
7280
|
+
|
7281
|
+
# @param request: Request instance for DescribeSqlTaskResult.
|
7282
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeSqlTaskResultRequest`
|
7283
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeSqlTaskResultResponse`
|
7284
|
+
def DescribeSqlTaskResult(request)
|
7285
|
+
body = send_request('DescribeSqlTaskResult', request.serialize)
|
7286
|
+
response = JSON.parse(body)
|
7287
|
+
if response['Response'].key?('Error') == false
|
7288
|
+
model = DescribeSqlTaskResultResponse.new
|
7289
|
+
model.deserialize(response['Response'])
|
7290
|
+
model
|
7291
|
+
else
|
7292
|
+
code = response['Response']['Error']['Code']
|
7293
|
+
message = response['Response']['Error']['Message']
|
7294
|
+
reqid = response['Response']['RequestId']
|
7295
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
7296
|
+
end
|
7297
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
7298
|
+
raise e
|
7299
|
+
rescue StandardError => e
|
7300
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
7301
|
+
end
|
7302
|
+
|
6367
7303
|
# 获取数据标准规则详情
|
6368
7304
|
|
6369
7305
|
# @param request: Request instance for DescribeStandardRuleDetailInfoList.
|
@@ -6845,6 +7781,30 @@ module TencentCloud
|
|
6845
7781
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6846
7782
|
end
|
6847
7783
|
|
7784
|
+
# 查询任务输入参数
|
7785
|
+
|
7786
|
+
# @param request: Request instance for DescribeTaskInParamDs.
|
7787
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTaskInParamDsRequest`
|
7788
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTaskInParamDsResponse`
|
7789
|
+
def DescribeTaskInParamDs(request)
|
7790
|
+
body = send_request('DescribeTaskInParamDs', request.serialize)
|
7791
|
+
response = JSON.parse(body)
|
7792
|
+
if response['Response'].key?('Error') == false
|
7793
|
+
model = DescribeTaskInParamDsResponse.new
|
7794
|
+
model.deserialize(response['Response'])
|
7795
|
+
model
|
7796
|
+
else
|
7797
|
+
code = response['Response']['Error']['Code']
|
7798
|
+
message = response['Response']['Error']['Message']
|
7799
|
+
reqid = response['Response']['RequestId']
|
7800
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
7801
|
+
end
|
7802
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
7803
|
+
raise e
|
7804
|
+
rescue StandardError => e
|
7805
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
7806
|
+
end
|
7807
|
+
|
6848
7808
|
# 离线任务实例详情
|
6849
7809
|
|
6850
7810
|
# @param request: Request instance for DescribeTaskInstance.
|
@@ -6989,6 +7949,30 @@ module TencentCloud
|
|
6989
7949
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6990
7950
|
end
|
6991
7951
|
|
7952
|
+
# 查询任务输出参数
|
7953
|
+
|
7954
|
+
# @param request: Request instance for DescribeTaskOutParamDs.
|
7955
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTaskOutParamDsRequest`
|
7956
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTaskOutParamDsResponse`
|
7957
|
+
def DescribeTaskOutParamDs(request)
|
7958
|
+
body = send_request('DescribeTaskOutParamDs', request.serialize)
|
7959
|
+
response = JSON.parse(body)
|
7960
|
+
if response['Response'].key?('Error') == false
|
7961
|
+
model = DescribeTaskOutParamDsResponse.new
|
7962
|
+
model.deserialize(response['Response'])
|
7963
|
+
model
|
7964
|
+
else
|
7965
|
+
code = response['Response']['Error']['Code']
|
7966
|
+
message = response['Response']['Error']['Message']
|
7967
|
+
reqid = response['Response']['RequestId']
|
7968
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
7969
|
+
end
|
7970
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
7971
|
+
raise e
|
7972
|
+
rescue StandardError => e
|
7973
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
7974
|
+
end
|
7975
|
+
|
6992
7976
|
# 获取指定任务产出登记列表
|
6993
7977
|
|
6994
7978
|
# @param request: Request instance for DescribeTaskOutputRegistries.
|
@@ -7013,6 +7997,30 @@ module TencentCloud
|
|
7013
7997
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
7014
7998
|
end
|
7015
7999
|
|
8000
|
+
# 查询任务引用参数
|
8001
|
+
|
8002
|
+
# @param request: Request instance for DescribeTaskParamDs.
|
8003
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTaskParamDsRequest`
|
8004
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTaskParamDsResponse`
|
8005
|
+
def DescribeTaskParamDs(request)
|
8006
|
+
body = send_request('DescribeTaskParamDs', request.serialize)
|
8007
|
+
response = JSON.parse(body)
|
8008
|
+
if response['Response'].key?('Error') == false
|
8009
|
+
model = DescribeTaskParamDsResponse.new
|
8010
|
+
model.deserialize(response['Response'])
|
8011
|
+
model
|
8012
|
+
else
|
8013
|
+
code = response['Response']['Error']['Code']
|
8014
|
+
message = response['Response']['Error']['Message']
|
8015
|
+
reqid = response['Response']['RequestId']
|
8016
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
8017
|
+
end
|
8018
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
8019
|
+
raise e
|
8020
|
+
rescue StandardError => e
|
8021
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
8022
|
+
end
|
8023
|
+
|
7016
8024
|
# 基于当前任务的数据时间计算依赖的上游任务数据时间
|
7017
8025
|
|
7018
8026
|
# @param request: Request instance for DescribeTaskParentRunTime.
|
@@ -7255,6 +8263,30 @@ module TencentCloud
|
|
7255
8263
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
7256
8264
|
end
|
7257
8265
|
|
8266
|
+
# 获取etl测试运行任务执行状态和日志
|
8267
|
+
|
8268
|
+
# @param request: Request instance for DescribeTestRun.
|
8269
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTestRunRequest`
|
8270
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTestRunResponse`
|
8271
|
+
def DescribeTestRun(request)
|
8272
|
+
body = send_request('DescribeTestRun', request.serialize)
|
8273
|
+
response = JSON.parse(body)
|
8274
|
+
if response['Response'].key?('Error') == false
|
8275
|
+
model = DescribeTestRunResponse.new
|
8276
|
+
model.deserialize(response['Response'])
|
8277
|
+
model
|
8278
|
+
else
|
8279
|
+
code = response['Response']['Error']['Code']
|
8280
|
+
message = response['Response']['Error']['Message']
|
8281
|
+
reqid = response['Response']['RequestId']
|
8282
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
8283
|
+
end
|
8284
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
8285
|
+
raise e
|
8286
|
+
rescue StandardError => e
|
8287
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
8288
|
+
end
|
8289
|
+
|
7258
8290
|
# 获取第三方运行日志
|
7259
8291
|
|
7260
8292
|
# @param request: Request instance for DescribeThirdTaskRunLog.
|
@@ -7279,6 +8311,30 @@ module TencentCloud
|
|
7279
8311
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
7280
8312
|
end
|
7281
8313
|
|
8314
|
+
# 获取长连接Token
|
8315
|
+
|
8316
|
+
# @param request: Request instance for DescribeToken.
|
8317
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTokenRequest`
|
8318
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTokenResponse`
|
8319
|
+
def DescribeToken(request)
|
8320
|
+
body = send_request('DescribeToken', request.serialize)
|
8321
|
+
response = JSON.parse(body)
|
8322
|
+
if response['Response'].key?('Error') == false
|
8323
|
+
model = DescribeTokenResponse.new
|
8324
|
+
model.deserialize(response['Response'])
|
8325
|
+
model
|
8326
|
+
else
|
8327
|
+
code = response['Response']['Error']['Code']
|
8328
|
+
message = response['Response']['Error']['Message']
|
8329
|
+
reqid = response['Response']['RequestId']
|
8330
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
8331
|
+
end
|
8332
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
8333
|
+
raise e
|
8334
|
+
rescue StandardError => e
|
8335
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
8336
|
+
end
|
8337
|
+
|
7282
8338
|
# 数据质量概览页面表排行接口
|
7283
8339
|
|
7284
8340
|
# @param request: Request instance for DescribeTopTableStat.
|
@@ -7327,6 +8383,30 @@ module TencentCloud
|
|
7327
8383
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
7328
8384
|
end
|
7329
8385
|
|
8386
|
+
# 根据文件夹查询工作流
|
8387
|
+
|
8388
|
+
# @param request: Request instance for DescribeWorkflowByFordIds.
|
8389
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeWorkflowByFordIdsRequest`
|
8390
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeWorkflowByFordIdsResponse`
|
8391
|
+
def DescribeWorkflowByFordIds(request)
|
8392
|
+
body = send_request('DescribeWorkflowByFordIds', request.serialize)
|
8393
|
+
response = JSON.parse(body)
|
8394
|
+
if response['Response'].key?('Error') == false
|
8395
|
+
model = DescribeWorkflowByFordIdsResponse.new
|
8396
|
+
model.deserialize(response['Response'])
|
8397
|
+
model
|
8398
|
+
else
|
8399
|
+
code = response['Response']['Error']['Code']
|
8400
|
+
message = response['Response']['Error']['Message']
|
8401
|
+
reqid = response['Response']['RequestId']
|
8402
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
8403
|
+
end
|
8404
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
8405
|
+
raise e
|
8406
|
+
rescue StandardError => e
|
8407
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
8408
|
+
end
|
8409
|
+
|
7330
8410
|
# 查询工作流画布
|
7331
8411
|
|
7332
8412
|
# @param request: Request instance for DescribeWorkflowCanvasInfo.
|
@@ -7399,6 +8479,30 @@ module TencentCloud
|
|
7399
8479
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
7400
8480
|
end
|
7401
8481
|
|
8482
|
+
# 获取工作流画布操作人列表
|
8483
|
+
|
8484
|
+
# @param request: Request instance for DescribeWorkflowCanvasOperators.
|
8485
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeWorkflowCanvasOperatorsRequest`
|
8486
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeWorkflowCanvasOperatorsResponse`
|
8487
|
+
def DescribeWorkflowCanvasOperators(request)
|
8488
|
+
body = send_request('DescribeWorkflowCanvasOperators', request.serialize)
|
8489
|
+
response = JSON.parse(body)
|
8490
|
+
if response['Response'].key?('Error') == false
|
8491
|
+
model = DescribeWorkflowCanvasOperatorsResponse.new
|
8492
|
+
model.deserialize(response['Response'])
|
8493
|
+
model
|
8494
|
+
else
|
8495
|
+
code = response['Response']['Error']['Code']
|
8496
|
+
message = response['Response']['Error']['Message']
|
8497
|
+
reqid = response['Response']['RequestId']
|
8498
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
8499
|
+
end
|
8500
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
8501
|
+
raise e
|
8502
|
+
rescue StandardError => e
|
8503
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
8504
|
+
end
|
8505
|
+
|
7402
8506
|
# 查询工作流画布运行起止时间
|
7403
8507
|
|
7404
8508
|
# @param request: Request instance for DescribeWorkflowExecuteById.
|
@@ -7519,6 +8623,30 @@ module TencentCloud
|
|
7519
8623
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
7520
8624
|
end
|
7521
8625
|
|
8626
|
+
# 查询工作流全局参数
|
8627
|
+
|
8628
|
+
# @param request: Request instance for DescribeWorkflowParamDs.
|
8629
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeWorkflowParamDsRequest`
|
8630
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeWorkflowParamDsResponse`
|
8631
|
+
def DescribeWorkflowParamDs(request)
|
8632
|
+
body = send_request('DescribeWorkflowParamDs', request.serialize)
|
8633
|
+
response = JSON.parse(body)
|
8634
|
+
if response['Response'].key?('Error') == false
|
8635
|
+
model = DescribeWorkflowParamDsResponse.new
|
8636
|
+
model.deserialize(response['Response'])
|
8637
|
+
model
|
8638
|
+
else
|
8639
|
+
code = response['Response']['Error']['Code']
|
8640
|
+
message = response['Response']['Error']['Message']
|
8641
|
+
reqid = response['Response']['RequestId']
|
8642
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
8643
|
+
end
|
8644
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
8645
|
+
raise e
|
8646
|
+
rescue StandardError => e
|
8647
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
8648
|
+
end
|
8649
|
+
|
7522
8650
|
# 获取工作流调度信息
|
7523
8651
|
|
7524
8652
|
# @param request: Request instance for DescribeWorkflowSchedulerInfoDs.
|
@@ -7615,6 +8743,54 @@ module TencentCloud
|
|
7615
8743
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
7616
8744
|
end
|
7617
8745
|
|
8746
|
+
# 下载SQL执行结果
|
8747
|
+
|
8748
|
+
# @param request: Request instance for DownloadNewSqlResult.
|
8749
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DownloadNewSqlResultRequest`
|
8750
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DownloadNewSqlResultResponse`
|
8751
|
+
def DownloadNewSqlResult(request)
|
8752
|
+
body = send_request('DownloadNewSqlResult', request.serialize)
|
8753
|
+
response = JSON.parse(body)
|
8754
|
+
if response['Response'].key?('Error') == false
|
8755
|
+
model = DownloadNewSqlResultResponse.new
|
8756
|
+
model.deserialize(response['Response'])
|
8757
|
+
model
|
8758
|
+
else
|
8759
|
+
code = response['Response']['Error']['Code']
|
8760
|
+
message = response['Response']['Error']['Message']
|
8761
|
+
reqid = response['Response']['RequestId']
|
8762
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
8763
|
+
end
|
8764
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
8765
|
+
raise e
|
8766
|
+
rescue StandardError => e
|
8767
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
8768
|
+
end
|
8769
|
+
|
8770
|
+
# 下载SQL执行结果
|
8771
|
+
|
8772
|
+
# @param request: Request instance for DownloadSqlResult.
|
8773
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DownloadSqlResultRequest`
|
8774
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DownloadSqlResultResponse`
|
8775
|
+
def DownloadSqlResult(request)
|
8776
|
+
body = send_request('DownloadSqlResult', request.serialize)
|
8777
|
+
response = JSON.parse(body)
|
8778
|
+
if response['Response'].key?('Error') == false
|
8779
|
+
model = DownloadSqlResultResponse.new
|
8780
|
+
model.deserialize(response['Response'])
|
8781
|
+
model
|
8782
|
+
else
|
8783
|
+
code = response['Response']['Error']['Code']
|
8784
|
+
message = response['Response']['Error']['Message']
|
8785
|
+
reqid = response['Response']['RequestId']
|
8786
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
8787
|
+
end
|
8788
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
8789
|
+
raise e
|
8790
|
+
rescue StandardError => e
|
8791
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
8792
|
+
end
|
8793
|
+
|
7618
8794
|
# 调试运行集成任务
|
7619
8795
|
|
7620
8796
|
# @param request: Request instance for DryRunDIOfflineTask.
|
@@ -7879,6 +9055,30 @@ module TencentCloud
|
|
7879
9055
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
7880
9056
|
end
|
7881
9057
|
|
9058
|
+
# 远端路径寻找任务
|
9059
|
+
|
9060
|
+
# @param request: Request instance for FindTaskByRemotePath.
|
9061
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::FindTaskByRemotePathRequest`
|
9062
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::FindTaskByRemotePathResponse`
|
9063
|
+
def FindTaskByRemotePath(request)
|
9064
|
+
body = send_request('FindTaskByRemotePath', request.serialize)
|
9065
|
+
response = JSON.parse(body)
|
9066
|
+
if response['Response'].key?('Error') == false
|
9067
|
+
model = FindTaskByRemotePathResponse.new
|
9068
|
+
model.deserialize(response['Response'])
|
9069
|
+
model
|
9070
|
+
else
|
9071
|
+
code = response['Response']['Error']['Code']
|
9072
|
+
message = response['Response']['Error']['Message']
|
9073
|
+
reqid = response['Response']['RequestId']
|
9074
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
9075
|
+
end
|
9076
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
9077
|
+
raise e
|
9078
|
+
rescue StandardError => e
|
9079
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
9080
|
+
end
|
9081
|
+
|
7882
9082
|
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
7883
9083
|
# 实例批量置成功
|
7884
9084
|
|
@@ -8170,6 +9370,54 @@ module TencentCloud
|
|
8170
9370
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
8171
9371
|
end
|
8172
9372
|
|
9373
|
+
# 开发空间获取最近一次测试运行记录信息
|
9374
|
+
|
9375
|
+
# @param request: Request instance for GetLatestAnalyseInfo.
|
9376
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::GetLatestAnalyseInfoRequest`
|
9377
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::GetLatestAnalyseInfoResponse`
|
9378
|
+
def GetLatestAnalyseInfo(request)
|
9379
|
+
body = send_request('GetLatestAnalyseInfo', request.serialize)
|
9380
|
+
response = JSON.parse(body)
|
9381
|
+
if response['Response'].key?('Error') == false
|
9382
|
+
model = GetLatestAnalyseInfoResponse.new
|
9383
|
+
model.deserialize(response['Response'])
|
9384
|
+
model
|
9385
|
+
else
|
9386
|
+
code = response['Response']['Error']['Code']
|
9387
|
+
message = response['Response']['Error']['Message']
|
9388
|
+
reqid = response['Response']['RequestId']
|
9389
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
9390
|
+
end
|
9391
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
9392
|
+
raise e
|
9393
|
+
rescue StandardError => e
|
9394
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
9395
|
+
end
|
9396
|
+
|
9397
|
+
# 编排空间获取最近一次测试运行记录信息
|
9398
|
+
|
9399
|
+
# @param request: Request instance for GetLatestTestRunInfo.
|
9400
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::GetLatestTestRunInfoRequest`
|
9401
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::GetLatestTestRunInfoResponse`
|
9402
|
+
def GetLatestTestRunInfo(request)
|
9403
|
+
body = send_request('GetLatestTestRunInfo', request.serialize)
|
9404
|
+
response = JSON.parse(body)
|
9405
|
+
if response['Response'].key?('Error') == false
|
9406
|
+
model = GetLatestTestRunInfoResponse.new
|
9407
|
+
model.deserialize(response['Response'])
|
9408
|
+
model
|
9409
|
+
else
|
9410
|
+
code = response['Response']['Error']['Code']
|
9411
|
+
message = response['Response']['Error']['Message']
|
9412
|
+
reqid = response['Response']['RequestId']
|
9413
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
9414
|
+
end
|
9415
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
9416
|
+
raise e
|
9417
|
+
rescue StandardError => e
|
9418
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
9419
|
+
end
|
9420
|
+
|
8173
9421
|
# 获取离线任务实例列表(新)
|
8174
9422
|
|
8175
9423
|
# @param request: Request instance for GetOfflineDIInstanceList.
|
@@ -8242,6 +9490,30 @@ module TencentCloud
|
|
8242
9490
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
8243
9491
|
end
|
8244
9492
|
|
9493
|
+
# 资源管理-获取资源上传的可用 cos 路径
|
9494
|
+
|
9495
|
+
# @param request: Request instance for GetResourceCosPath.
|
9496
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::GetResourceCosPathRequest`
|
9497
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::GetResourceCosPathResponse`
|
9498
|
+
def GetResourceCosPath(request)
|
9499
|
+
body = send_request('GetResourceCosPath', request.serialize)
|
9500
|
+
response = JSON.parse(body)
|
9501
|
+
if response['Response'].key?('Error') == false
|
9502
|
+
model = GetResourceCosPathResponse.new
|
9503
|
+
model.deserialize(response['Response'])
|
9504
|
+
model
|
9505
|
+
else
|
9506
|
+
code = response['Response']['Error']['Code']
|
9507
|
+
message = response['Response']['Error']['Message']
|
9508
|
+
reqid = response['Response']['RequestId']
|
9509
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
9510
|
+
end
|
9511
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
9512
|
+
raise e
|
9513
|
+
rescue StandardError => e
|
9514
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
9515
|
+
end
|
9516
|
+
|
8245
9517
|
# 资源管理-拉取资源目录树
|
8246
9518
|
|
8247
9519
|
# @param request: Request instance for GetResourcePathTree.
|
@@ -8323,7 +9595,103 @@ module TencentCloud
|
|
8323
9595
|
body = send_request('HeartBeat', request.serialize)
|
8324
9596
|
response = JSON.parse(body)
|
8325
9597
|
if response['Response'].key?('Error') == false
|
8326
|
-
model = HeartBeatResponse.new
|
9598
|
+
model = HeartBeatResponse.new
|
9599
|
+
model.deserialize(response['Response'])
|
9600
|
+
model
|
9601
|
+
else
|
9602
|
+
code = response['Response']['Error']['Code']
|
9603
|
+
message = response['Response']['Error']['Message']
|
9604
|
+
reqid = response['Response']['RequestId']
|
9605
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
9606
|
+
end
|
9607
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
9608
|
+
raise e
|
9609
|
+
rescue StandardError => e
|
9610
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
9611
|
+
end
|
9612
|
+
|
9613
|
+
# 事件管理-导入事件
|
9614
|
+
|
9615
|
+
# @param request: Request instance for ImportDsEvent.
|
9616
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::ImportDsEventRequest`
|
9617
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::ImportDsEventResponse`
|
9618
|
+
def ImportDsEvent(request)
|
9619
|
+
body = send_request('ImportDsEvent', request.serialize)
|
9620
|
+
response = JSON.parse(body)
|
9621
|
+
if response['Response'].key?('Error') == false
|
9622
|
+
model = ImportDsEventResponse.new
|
9623
|
+
model.deserialize(response['Response'])
|
9624
|
+
model
|
9625
|
+
else
|
9626
|
+
code = response['Response']['Error']['Code']
|
9627
|
+
message = response['Response']['Error']['Message']
|
9628
|
+
reqid = response['Response']['RequestId']
|
9629
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
9630
|
+
end
|
9631
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
9632
|
+
raise e
|
9633
|
+
rescue StandardError => e
|
9634
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
9635
|
+
end
|
9636
|
+
|
9637
|
+
# 批量导入文件
|
9638
|
+
|
9639
|
+
# @param request: Request instance for ImportFiles.
|
9640
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::ImportFilesRequest`
|
9641
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::ImportFilesResponse`
|
9642
|
+
def ImportFiles(request)
|
9643
|
+
body = send_request('ImportFiles', request.serialize)
|
9644
|
+
response = JSON.parse(body)
|
9645
|
+
if response['Response'].key?('Error') == false
|
9646
|
+
model = ImportFilesResponse.new
|
9647
|
+
model.deserialize(response['Response'])
|
9648
|
+
model
|
9649
|
+
else
|
9650
|
+
code = response['Response']['Error']['Code']
|
9651
|
+
message = response['Response']['Error']['Message']
|
9652
|
+
reqid = response['Response']['RequestId']
|
9653
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
9654
|
+
end
|
9655
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
9656
|
+
raise e
|
9657
|
+
rescue StandardError => e
|
9658
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
9659
|
+
end
|
9660
|
+
|
9661
|
+
# 异步导入集成任务
|
9662
|
+
|
9663
|
+
# @param request: Request instance for ImportOfflineTask.
|
9664
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::ImportOfflineTaskRequest`
|
9665
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::ImportOfflineTaskResponse`
|
9666
|
+
def ImportOfflineTask(request)
|
9667
|
+
body = send_request('ImportOfflineTask', request.serialize)
|
9668
|
+
response = JSON.parse(body)
|
9669
|
+
if response['Response'].key?('Error') == false
|
9670
|
+
model = ImportOfflineTaskResponse.new
|
9671
|
+
model.deserialize(response['Response'])
|
9672
|
+
model
|
9673
|
+
else
|
9674
|
+
code = response['Response']['Error']['Code']
|
9675
|
+
message = response['Response']['Error']['Message']
|
9676
|
+
reqid = response['Response']['RequestId']
|
9677
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
9678
|
+
end
|
9679
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
9680
|
+
raise e
|
9681
|
+
rescue StandardError => e
|
9682
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
9683
|
+
end
|
9684
|
+
|
9685
|
+
# 导入项目参数
|
9686
|
+
|
9687
|
+
# @param request: Request instance for ImportProjectParamDs.
|
9688
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::ImportProjectParamDsRequest`
|
9689
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::ImportProjectParamDsResponse`
|
9690
|
+
def ImportProjectParamDs(request)
|
9691
|
+
body = send_request('ImportProjectParamDs', request.serialize)
|
9692
|
+
response = JSON.parse(body)
|
9693
|
+
if response['Response'].key?('Error') == false
|
9694
|
+
model = ImportProjectParamDsResponse.new
|
8327
9695
|
model.deserialize(response['Response'])
|
8328
9696
|
model
|
8329
9697
|
else
|
@@ -8338,16 +9706,16 @@ module TencentCloud
|
|
8338
9706
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
8339
9707
|
end
|
8340
9708
|
|
8341
|
-
#
|
9709
|
+
# 创建数据表:HIVE
|
8342
9710
|
|
8343
|
-
# @param request: Request instance for
|
8344
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
8345
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
8346
|
-
def
|
8347
|
-
body = send_request('
|
9711
|
+
# @param request: Request instance for ImportTableData.
|
9712
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::ImportTableDataRequest`
|
9713
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::ImportTableDataResponse`
|
9714
|
+
def ImportTableData(request)
|
9715
|
+
body = send_request('ImportTableData', request.serialize)
|
8348
9716
|
response = JSON.parse(body)
|
8349
9717
|
if response['Response'].key?('Error') == false
|
8350
|
-
model =
|
9718
|
+
model = ImportTableDataResponse.new
|
8351
9719
|
model.deserialize(response['Response'])
|
8352
9720
|
model
|
8353
9721
|
else
|
@@ -8362,16 +9730,16 @@ module TencentCloud
|
|
8362
9730
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
8363
9731
|
end
|
8364
9732
|
|
8365
|
-
#
|
9733
|
+
# 工作流导入(XML)
|
8366
9734
|
|
8367
|
-
# @param request: Request instance for
|
8368
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
8369
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
8370
|
-
def
|
8371
|
-
body = send_request('
|
9735
|
+
# @param request: Request instance for ImportWorkflowXml.
|
9736
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::ImportWorkflowXmlRequest`
|
9737
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::ImportWorkflowXmlResponse`
|
9738
|
+
def ImportWorkflowXml(request)
|
9739
|
+
body = send_request('ImportWorkflowXml', request.serialize)
|
8372
9740
|
response = JSON.parse(body)
|
8373
9741
|
if response['Response'].key?('Error') == false
|
8374
|
-
model =
|
9742
|
+
model = ImportWorkflowXmlResponse.new
|
8375
9743
|
model.deserialize(response['Response'])
|
8376
9744
|
model
|
8377
9745
|
else
|
@@ -8386,16 +9754,16 @@ module TencentCloud
|
|
8386
9754
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
8387
9755
|
end
|
8388
9756
|
|
8389
|
-
#
|
9757
|
+
# 工作流导入(ZIP)
|
8390
9758
|
|
8391
|
-
# @param request: Request instance for
|
8392
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
8393
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
8394
|
-
def
|
8395
|
-
body = send_request('
|
9759
|
+
# @param request: Request instance for ImportWorkflowZip.
|
9760
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::ImportWorkflowZipRequest`
|
9761
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::ImportWorkflowZipResponse`
|
9762
|
+
def ImportWorkflowZip(request)
|
9763
|
+
body = send_request('ImportWorkflowZip', request.serialize)
|
8396
9764
|
response = JSON.parse(body)
|
8397
9765
|
if response['Response'].key?('Error') == false
|
8398
|
-
model =
|
9766
|
+
model = ImportWorkflowZipResponse.new
|
8399
9767
|
model.deserialize(response['Response'])
|
8400
9768
|
model
|
8401
9769
|
else
|
@@ -8410,16 +9778,16 @@ module TencentCloud
|
|
8410
9778
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
8411
9779
|
end
|
8412
9780
|
|
8413
|
-
#
|
9781
|
+
# 资源管理-判断资源文件是否存在
|
8414
9782
|
|
8415
|
-
# @param request: Request instance for
|
8416
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::
|
8417
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::
|
8418
|
-
def
|
8419
|
-
body = send_request('
|
9783
|
+
# @param request: Request instance for JudgeResourceFile.
|
9784
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::JudgeResourceFileRequest`
|
9785
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::JudgeResourceFileResponse`
|
9786
|
+
def JudgeResourceFile(request)
|
9787
|
+
body = send_request('JudgeResourceFile', request.serialize)
|
8420
9788
|
response = JSON.parse(body)
|
8421
9789
|
if response['Response'].key?('Error') == false
|
8422
|
-
model =
|
9790
|
+
model = JudgeResourceFileResponse.new
|
8423
9791
|
model.deserialize(response['Response'])
|
8424
9792
|
model
|
8425
9793
|
else
|
@@ -8531,6 +9899,30 @@ module TencentCloud
|
|
8531
9899
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
8532
9900
|
end
|
8533
9901
|
|
9902
|
+
# 停止试运行任务(多个)
|
9903
|
+
|
9904
|
+
# @param request: Request instance for KillTasksTestRun.
|
9905
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::KillTasksTestRunRequest`
|
9906
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::KillTasksTestRunResponse`
|
9907
|
+
def KillTasksTestRun(request)
|
9908
|
+
body = send_request('KillTasksTestRun', request.serialize)
|
9909
|
+
response = JSON.parse(body)
|
9910
|
+
if response['Response'].key?('Error') == false
|
9911
|
+
model = KillTasksTestRunResponse.new
|
9912
|
+
model.deserialize(response['Response'])
|
9913
|
+
model
|
9914
|
+
else
|
9915
|
+
code = response['Response']['Error']['Code']
|
9916
|
+
message = response['Response']['Error']['Message']
|
9917
|
+
reqid = response['Response']['RequestId']
|
9918
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
9919
|
+
end
|
9920
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
9921
|
+
raise e
|
9922
|
+
rescue StandardError => e
|
9923
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
9924
|
+
end
|
9925
|
+
|
8534
9926
|
# 获取操作详情列表
|
8535
9927
|
|
8536
9928
|
# @param request: Request instance for ListBatchDetail.
|
@@ -9358,6 +10750,54 @@ module TencentCloud
|
|
9358
10750
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
9359
10751
|
end
|
9360
10752
|
|
10753
|
+
# 库表管理-新建数据表-csv预览,最多支持500行预览
|
10754
|
+
|
10755
|
+
# @param request: Request instance for PreviewDataTableCsv.
|
10756
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::PreviewDataTableCsvRequest`
|
10757
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::PreviewDataTableCsvResponse`
|
10758
|
+
def PreviewDataTableCsv(request)
|
10759
|
+
body = send_request('PreviewDataTableCsv', request.serialize)
|
10760
|
+
response = JSON.parse(body)
|
10761
|
+
if response['Response'].key?('Error') == false
|
10762
|
+
model = PreviewDataTableCsvResponse.new
|
10763
|
+
model.deserialize(response['Response'])
|
10764
|
+
model
|
10765
|
+
else
|
10766
|
+
code = response['Response']['Error']['Code']
|
10767
|
+
message = response['Response']['Error']['Message']
|
10768
|
+
reqid = response['Response']['RequestId']
|
10769
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
10770
|
+
end
|
10771
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
10772
|
+
raise e
|
10773
|
+
rescue StandardError => e
|
10774
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
10775
|
+
end
|
10776
|
+
|
10777
|
+
# 查询工作流版本信息
|
10778
|
+
|
10779
|
+
# @param request: Request instance for QueryWorkflowVersion.
|
10780
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::QueryWorkflowVersionRequest`
|
10781
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::QueryWorkflowVersionResponse`
|
10782
|
+
def QueryWorkflowVersion(request)
|
10783
|
+
body = send_request('QueryWorkflowVersion', request.serialize)
|
10784
|
+
response = JSON.parse(body)
|
10785
|
+
if response['Response'].key?('Error') == false
|
10786
|
+
model = QueryWorkflowVersionResponse.new
|
10787
|
+
model.deserialize(response['Response'])
|
10788
|
+
model
|
10789
|
+
else
|
10790
|
+
code = response['Response']['Error']['Code']
|
10791
|
+
message = response['Response']['Error']['Message']
|
10792
|
+
reqid = response['Response']['RequestId']
|
10793
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
10794
|
+
end
|
10795
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
10796
|
+
raise e
|
10797
|
+
rescue StandardError => e
|
10798
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
10799
|
+
end
|
10800
|
+
|
9361
10801
|
# 注册事件
|
9362
10802
|
|
9363
10803
|
# @param request: Request instance for RegisterDsEvent.
|
@@ -9600,6 +11040,30 @@ module TencentCloud
|
|
9600
11040
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
9601
11041
|
end
|
9602
11042
|
|
11043
|
+
# 资源管理-重命名资源目录
|
11044
|
+
|
11045
|
+
# @param request: Request instance for RenameResourcePath.
|
11046
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::RenameResourcePathRequest`
|
11047
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::RenameResourcePathResponse`
|
11048
|
+
def RenameResourcePath(request)
|
11049
|
+
body = send_request('RenameResourcePath', request.serialize)
|
11050
|
+
response = JSON.parse(body)
|
11051
|
+
if response['Response'].key?('Error') == false
|
11052
|
+
model = RenameResourcePathResponse.new
|
11053
|
+
model.deserialize(response['Response'])
|
11054
|
+
model
|
11055
|
+
else
|
11056
|
+
code = response['Response']['Error']['Code']
|
11057
|
+
message = response['Response']['Error']['Message']
|
11058
|
+
reqid = response['Response']['RequestId']
|
11059
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
11060
|
+
end
|
11061
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
11062
|
+
raise e
|
11063
|
+
rescue StandardError => e
|
11064
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
11065
|
+
end
|
11066
|
+
|
9603
11067
|
# RenameTaskDs
|
9604
11068
|
|
9605
11069
|
# @param request: Request instance for RenameTaskDs.
|
@@ -9720,6 +11184,30 @@ module TencentCloud
|
|
9720
11184
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
9721
11185
|
end
|
9722
11186
|
|
11187
|
+
# 替换项目参数历史版本
|
11188
|
+
|
11189
|
+
# @param request: Request instance for ReplaceProjectParamVersionDs.
|
11190
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::ReplaceProjectParamVersionDsRequest`
|
11191
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::ReplaceProjectParamVersionDsResponse`
|
11192
|
+
def ReplaceProjectParamVersionDs(request)
|
11193
|
+
body = send_request('ReplaceProjectParamVersionDs', request.serialize)
|
11194
|
+
response = JSON.parse(body)
|
11195
|
+
if response['Response'].key?('Error') == false
|
11196
|
+
model = ReplaceProjectParamVersionDsResponse.new
|
11197
|
+
model.deserialize(response['Response'])
|
11198
|
+
model
|
11199
|
+
else
|
11200
|
+
code = response['Response']['Error']['Code']
|
11201
|
+
message = response['Response']['Error']['Message']
|
11202
|
+
reqid = response['Response']['RequestId']
|
11203
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
11204
|
+
end
|
11205
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
11206
|
+
raise e
|
11207
|
+
rescue StandardError => e
|
11208
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
11209
|
+
end
|
11210
|
+
|
9723
11211
|
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
9724
11212
|
# 实例批量重跑
|
9725
11213
|
|
@@ -9817,6 +11305,30 @@ module TencentCloud
|
|
9817
11305
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
9818
11306
|
end
|
9819
11307
|
|
11308
|
+
# 还原任务
|
11309
|
+
|
11310
|
+
# @param request: Request instance for RestoreRecycleTask.
|
11311
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::RestoreRecycleTaskRequest`
|
11312
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::RestoreRecycleTaskResponse`
|
11313
|
+
def RestoreRecycleTask(request)
|
11314
|
+
body = send_request('RestoreRecycleTask', request.serialize)
|
11315
|
+
response = JSON.parse(body)
|
11316
|
+
if response['Response'].key?('Error') == false
|
11317
|
+
model = RestoreRecycleTaskResponse.new
|
11318
|
+
model.deserialize(response['Response'])
|
11319
|
+
model
|
11320
|
+
else
|
11321
|
+
code = response['Response']['Error']['Code']
|
11322
|
+
message = response['Response']['Error']['Message']
|
11323
|
+
reqid = response['Response']['RequestId']
|
11324
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
11325
|
+
end
|
11326
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
11327
|
+
raise e
|
11328
|
+
rescue StandardError => e
|
11329
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
11330
|
+
end
|
11331
|
+
|
9820
11332
|
# 继续集成任务
|
9821
11333
|
|
9822
11334
|
# @param request: Request instance for ResumeIntegrationTask.
|
@@ -9865,6 +11377,30 @@ module TencentCloud
|
|
9865
11377
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
9866
11378
|
end
|
9867
11379
|
|
11380
|
+
# 回滚自定义函数版本
|
11381
|
+
|
11382
|
+
# @param request: Request instance for RollbackCustomFunctionVersion.
|
11383
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::RollbackCustomFunctionVersionRequest`
|
11384
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::RollbackCustomFunctionVersionResponse`
|
11385
|
+
def RollbackCustomFunctionVersion(request)
|
11386
|
+
body = send_request('RollbackCustomFunctionVersion', request.serialize)
|
11387
|
+
response = JSON.parse(body)
|
11388
|
+
if response['Response'].key?('Error') == false
|
11389
|
+
model = RollbackCustomFunctionVersionResponse.new
|
11390
|
+
model.deserialize(response['Response'])
|
11391
|
+
model
|
11392
|
+
else
|
11393
|
+
code = response['Response']['Error']['Code']
|
11394
|
+
message = response['Response']['Error']['Message']
|
11395
|
+
reqid = response['Response']['RequestId']
|
11396
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
11397
|
+
end
|
11398
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
11399
|
+
raise e
|
11400
|
+
rescue StandardError => e
|
11401
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
11402
|
+
end
|
11403
|
+
|
9868
11404
|
# 实例强制成功
|
9869
11405
|
|
9870
11406
|
# @param request: Request instance for RunForceSucScheduleInstances.
|
@@ -10083,6 +11619,30 @@ module TencentCloud
|
|
10083
11619
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
10084
11620
|
end
|
10085
11621
|
|
11622
|
+
# 即席分析终止任务接口
|
11623
|
+
|
11624
|
+
# @param request: Request instance for StopAdhocTask.
|
11625
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::StopAdhocTaskRequest`
|
11626
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::StopAdhocTaskResponse`
|
11627
|
+
def StopAdhocTask(request)
|
11628
|
+
body = send_request('StopAdhocTask', request.serialize)
|
11629
|
+
response = JSON.parse(body)
|
11630
|
+
if response['Response'].key?('Error') == false
|
11631
|
+
model = StopAdhocTaskResponse.new
|
11632
|
+
model.deserialize(response['Response'])
|
11633
|
+
model
|
11634
|
+
else
|
11635
|
+
code = response['Response']['Error']['Code']
|
11636
|
+
message = response['Response']['Error']['Message']
|
11637
|
+
reqid = response['Response']['RequestId']
|
11638
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
11639
|
+
end
|
11640
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
11641
|
+
raise e
|
11642
|
+
rescue StandardError => e
|
11643
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
11644
|
+
end
|
11645
|
+
|
10086
11646
|
# 提交基线
|
10087
11647
|
|
10088
11648
|
# @param request: Request instance for StopBaseline.
|
@@ -10131,6 +11691,30 @@ module TencentCloud
|
|
10131
11691
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
10132
11692
|
end
|
10133
11693
|
|
11694
|
+
# 终止etl测试运行任务
|
11695
|
+
|
11696
|
+
# @param request: Request instance for StopTestRun.
|
11697
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::StopTestRunRequest`
|
11698
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::StopTestRunResponse`
|
11699
|
+
def StopTestRun(request)
|
11700
|
+
body = send_request('StopTestRun', request.serialize)
|
11701
|
+
response = JSON.parse(body)
|
11702
|
+
if response['Response'].key?('Error') == false
|
11703
|
+
model = StopTestRunResponse.new
|
11704
|
+
model.deserialize(response['Response'])
|
11705
|
+
model
|
11706
|
+
else
|
11707
|
+
code = response['Response']['Error']['Code']
|
11708
|
+
message = response['Response']['Error']['Message']
|
11709
|
+
reqid = response['Response']['RequestId']
|
11710
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
11711
|
+
end
|
11712
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
11713
|
+
raise e
|
11714
|
+
rescue StandardError => e
|
11715
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
11716
|
+
end
|
11717
|
+
|
10134
11718
|
# 提交基线
|
10135
11719
|
|
10136
11720
|
# @param request: Request instance for SubmitBaseline.
|
@@ -10155,6 +11739,30 @@ module TencentCloud
|
|
10155
11739
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
10156
11740
|
end
|
10157
11741
|
|
11742
|
+
# 批量提交etl测试运行任务
|
11743
|
+
|
11744
|
+
# @param request: Request instance for SubmitBatchTestRun.
|
11745
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::SubmitBatchTestRunRequest`
|
11746
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::SubmitBatchTestRunResponse`
|
11747
|
+
def SubmitBatchTestRun(request)
|
11748
|
+
body = send_request('SubmitBatchTestRun', request.serialize)
|
11749
|
+
response = JSON.parse(body)
|
11750
|
+
if response['Response'].key?('Error') == false
|
11751
|
+
model = SubmitBatchTestRunResponse.new
|
11752
|
+
model.deserialize(response['Response'])
|
11753
|
+
model
|
11754
|
+
else
|
11755
|
+
code = response['Response']['Error']['Code']
|
11756
|
+
message = response['Response']['Error']['Message']
|
11757
|
+
reqid = response['Response']['RequestId']
|
11758
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
11759
|
+
end
|
11760
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
11761
|
+
raise e
|
11762
|
+
rescue StandardError => e
|
11763
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
11764
|
+
end
|
11765
|
+
|
10158
11766
|
# 提交自定义函数
|
10159
11767
|
|
10160
11768
|
# @param request: Request instance for SubmitCustomFunction.
|
@@ -10179,6 +11787,30 @@ module TencentCloud
|
|
10179
11787
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
10180
11788
|
end
|
10181
11789
|
|
11790
|
+
# 即席分析提交数据集成任务
|
11791
|
+
|
11792
|
+
# @param request: Request instance for SubmitIntegrationTask.
|
11793
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::SubmitIntegrationTaskRequest`
|
11794
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::SubmitIntegrationTaskResponse`
|
11795
|
+
def SubmitIntegrationTask(request)
|
11796
|
+
body = send_request('SubmitIntegrationTask', request.serialize)
|
11797
|
+
response = JSON.parse(body)
|
11798
|
+
if response['Response'].key?('Error') == false
|
11799
|
+
model = SubmitIntegrationTaskResponse.new
|
11800
|
+
model.deserialize(response['Response'])
|
11801
|
+
model
|
11802
|
+
else
|
11803
|
+
code = response['Response']['Error']['Code']
|
11804
|
+
message = response['Response']['Error']['Message']
|
11805
|
+
reqid = response['Response']['RequestId']
|
11806
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
11807
|
+
end
|
11808
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
11809
|
+
raise e
|
11810
|
+
rescue StandardError => e
|
11811
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
11812
|
+
end
|
11813
|
+
|
10182
11814
|
# 即席分析提交PySpark任务
|
10183
11815
|
|
10184
11816
|
# @param request: Request instance for SubmitPySparkTask.
|
@@ -10324,6 +11956,30 @@ module TencentCloud
|
|
10324
11956
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
10325
11957
|
end
|
10326
11958
|
|
11959
|
+
# 提交etl测试运行任务
|
11960
|
+
|
11961
|
+
# @param request: Request instance for SubmitTestRun.
|
11962
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::SubmitTestRunRequest`
|
11963
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::SubmitTestRunResponse`
|
11964
|
+
def SubmitTestRun(request)
|
11965
|
+
body = send_request('SubmitTestRun', request.serialize)
|
11966
|
+
response = JSON.parse(body)
|
11967
|
+
if response['Response'].key?('Error') == false
|
11968
|
+
model = SubmitTestRunResponse.new
|
11969
|
+
model.deserialize(response['Response'])
|
11970
|
+
model
|
11971
|
+
else
|
11972
|
+
code = response['Response']['Error']['Code']
|
11973
|
+
message = response['Response']['Error']['Message']
|
11974
|
+
reqid = response['Response']['RequestId']
|
11975
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
11976
|
+
end
|
11977
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
11978
|
+
raise e
|
11979
|
+
rescue StandardError => e
|
11980
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
11981
|
+
end
|
11982
|
+
|
10327
11983
|
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
10328
11984
|
# 提交工作流
|
10329
11985
|
|
@@ -10734,6 +12390,31 @@ module TencentCloud
|
|
10734
12390
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
10735
12391
|
end
|
10736
12392
|
|
12393
|
+
# <p style="color:red;">[该接口为 ds 中开发]</p>
|
12394
|
+
# 更新工作流(包括工作流基本信息与工作流参数)
|
12395
|
+
|
12396
|
+
# @param request: Request instance for UpdateWorkflowInfo.
|
12397
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::UpdateWorkflowInfoRequest`
|
12398
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::UpdateWorkflowInfoResponse`
|
12399
|
+
def UpdateWorkflowInfo(request)
|
12400
|
+
body = send_request('UpdateWorkflowInfo', request.serialize)
|
12401
|
+
response = JSON.parse(body)
|
12402
|
+
if response['Response'].key?('Error') == false
|
12403
|
+
model = UpdateWorkflowInfoResponse.new
|
12404
|
+
model.deserialize(response['Response'])
|
12405
|
+
model
|
12406
|
+
else
|
12407
|
+
code = response['Response']['Error']['Code']
|
12408
|
+
message = response['Response']['Error']['Message']
|
12409
|
+
reqid = response['Response']['RequestId']
|
12410
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
12411
|
+
end
|
12412
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
12413
|
+
raise e
|
12414
|
+
rescue StandardError => e
|
12415
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
12416
|
+
end
|
12417
|
+
|
10737
12418
|
# 修改工作流责任人
|
10738
12419
|
|
10739
12420
|
# @param request: Request instance for UpdateWorkflowOwner.
|