tencentcloud-sdk-wedata 3.0.1074 → 3.0.1078
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 +171 -3
- data/lib/v20210820/models.rb +2845 -27
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 09737cbaa72b1505db20ecf4af718976cd260473
|
4
|
+
data.tar.gz: ec71bde2ee1f779654d33d347e0977c849aee0b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5b77bc34ef6f91e83f4a72d079b22ea092fdb8c5568f64c5efc42a74e3df0b362e6976704c4ac93a85277c386911abe9183a5661866d12b3e97e830ea77c6d41
|
7
|
+
data.tar.gz: ce61fef78e931b5446a91ca3208ae7398b122d99f60431058a76eec5db8a5733346fd2416a17842271da9d09f23e9d09191300395dd56fad4331c149d602ce56
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1078
|
data/lib/v20210820/client.rb
CHANGED
@@ -1349,6 +1349,30 @@ module TencentCloud
|
|
1349
1349
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1350
1350
|
end
|
1351
1351
|
|
1352
|
+
# 删除任务连接
|
1353
|
+
|
1354
|
+
# @param request: Request instance for DeleteLink.
|
1355
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DeleteLinkRequest`
|
1356
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DeleteLinkResponse`
|
1357
|
+
def DeleteLink(request)
|
1358
|
+
body = send_request('DeleteLink', request.serialize)
|
1359
|
+
response = JSON.parse(body)
|
1360
|
+
if response['Response'].key?('Error') == false
|
1361
|
+
model = DeleteLinkResponse.new
|
1362
|
+
model.deserialize(response['Response'])
|
1363
|
+
model
|
1364
|
+
else
|
1365
|
+
code = response['Response']['Error']['Code']
|
1366
|
+
message = response['Response']['Error']['Message']
|
1367
|
+
reqid = response['Response']['RequestId']
|
1368
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1369
|
+
end
|
1370
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1371
|
+
raise e
|
1372
|
+
rescue StandardError => e
|
1373
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1374
|
+
end
|
1375
|
+
|
1352
1376
|
# 删除任务
|
1353
1377
|
|
1354
1378
|
# @param request: Request instance for DeleteOfflineTask.
|
@@ -1421,7 +1445,7 @@ module TencentCloud
|
|
1421
1445
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1422
1446
|
end
|
1423
1447
|
|
1424
|
-
#
|
1448
|
+
# 资源管理删除资源。本接口已废弃,请使用接口DeleteResourceFile。
|
1425
1449
|
|
1426
1450
|
# @param request: Request instance for DeleteResource.
|
1427
1451
|
# @type request: :class:`Tencentcloud::wedata::V20210820::DeleteResourceRequest`
|
@@ -2335,6 +2359,30 @@ module TencentCloud
|
|
2335
2359
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2336
2360
|
end
|
2337
2361
|
|
2362
|
+
# 商业化版本:根据id查询执行资源组指标
|
2363
|
+
|
2364
|
+
# @param request: Request instance for DescribeExecutorGroupMetric.
|
2365
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeExecutorGroupMetricRequest`
|
2366
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeExecutorGroupMetricResponse`
|
2367
|
+
def DescribeExecutorGroupMetric(request)
|
2368
|
+
body = send_request('DescribeExecutorGroupMetric', request.serialize)
|
2369
|
+
response = JSON.parse(body)
|
2370
|
+
if response['Response'].key?('Error') == false
|
2371
|
+
model = DescribeExecutorGroupMetricResponse.new
|
2372
|
+
model.deserialize(response['Response'])
|
2373
|
+
model
|
2374
|
+
else
|
2375
|
+
code = response['Response']['Error']['Code']
|
2376
|
+
message = response['Response']['Error']['Message']
|
2377
|
+
reqid = response['Response']['RequestId']
|
2378
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2379
|
+
end
|
2380
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2381
|
+
raise e
|
2382
|
+
rescue StandardError => e
|
2383
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2384
|
+
end
|
2385
|
+
|
2338
2386
|
# 元数据模型-字段基础信息查询接口
|
2339
2387
|
|
2340
2388
|
# @param request: Request instance for DescribeFieldBasicInfo.
|
@@ -3055,6 +3103,30 @@ module TencentCloud
|
|
3055
3103
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3056
3104
|
end
|
3057
3105
|
|
3106
|
+
# 查询任务父依赖
|
3107
|
+
|
3108
|
+
# @param request: Request instance for DescribeParentTask.
|
3109
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeParentTaskRequest`
|
3110
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeParentTaskResponse`
|
3111
|
+
def DescribeParentTask(request)
|
3112
|
+
body = send_request('DescribeParentTask', request.serialize)
|
3113
|
+
response = JSON.parse(body)
|
3114
|
+
if response['Response'].key?('Error') == false
|
3115
|
+
model = DescribeParentTaskResponse.new
|
3116
|
+
model.deserialize(response['Response'])
|
3117
|
+
model
|
3118
|
+
else
|
3119
|
+
code = response['Response']['Error']['Code']
|
3120
|
+
message = response['Response']['Error']['Message']
|
3121
|
+
reqid = response['Response']['RequestId']
|
3122
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3123
|
+
end
|
3124
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3125
|
+
raise e
|
3126
|
+
rescue StandardError => e
|
3127
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3128
|
+
end
|
3129
|
+
|
3058
3130
|
# 获取待提交任务预提交校验信息(注意:工作流编号或者任务编号列表,必须填一项)
|
3059
3131
|
|
3060
3132
|
# @param request: Request instance for DescribePendingSubmitTaskList.
|
@@ -3271,6 +3343,30 @@ module TencentCloud
|
|
3271
3343
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3272
3344
|
end
|
3273
3345
|
|
3346
|
+
# 根据任务ID分页查询任务绑定监听的事件
|
3347
|
+
|
3348
|
+
# @param request: Request instance for DescribeRelatedTasksByTaskId.
|
3349
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeRelatedTasksByTaskIdRequest`
|
3350
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeRelatedTasksByTaskIdResponse`
|
3351
|
+
def DescribeRelatedTasksByTaskId(request)
|
3352
|
+
body = send_request('DescribeRelatedTasksByTaskId', request.serialize)
|
3353
|
+
response = JSON.parse(body)
|
3354
|
+
if response['Response'].key?('Error') == false
|
3355
|
+
model = DescribeRelatedTasksByTaskIdResponse.new
|
3356
|
+
model.deserialize(response['Response'])
|
3357
|
+
model
|
3358
|
+
else
|
3359
|
+
code = response['Response']['Error']['Code']
|
3360
|
+
message = response['Response']['Error']['Message']
|
3361
|
+
reqid = response['Response']['RequestId']
|
3362
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3363
|
+
end
|
3364
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3365
|
+
raise e
|
3366
|
+
rescue StandardError => e
|
3367
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3368
|
+
end
|
3369
|
+
|
3274
3370
|
# 查询上报任务详情
|
3275
3371
|
|
3276
3372
|
# @param request: Request instance for DescribeReportTaskDetail.
|
@@ -4286,6 +4382,30 @@ module TencentCloud
|
|
4286
4382
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4287
4383
|
end
|
4288
4384
|
|
4385
|
+
# 查询任务具体详情【新】
|
4386
|
+
|
4387
|
+
# @param request: Request instance for DescribeTaskDetailDs.
|
4388
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTaskDetailDsRequest`
|
4389
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTaskDetailDsResponse`
|
4390
|
+
def DescribeTaskDetailDs(request)
|
4391
|
+
body = send_request('DescribeTaskDetailDs', request.serialize)
|
4392
|
+
response = JSON.parse(body)
|
4393
|
+
if response['Response'].key?('Error') == false
|
4394
|
+
model = DescribeTaskDetailDsResponse.new
|
4395
|
+
model.deserialize(response['Response'])
|
4396
|
+
model
|
4397
|
+
else
|
4398
|
+
code = response['Response']['Error']['Code']
|
4399
|
+
message = response['Response']['Error']['Message']
|
4400
|
+
reqid = response['Response']['RequestId']
|
4401
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4402
|
+
end
|
4403
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4404
|
+
raise e
|
4405
|
+
rescue StandardError => e
|
4406
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4407
|
+
end
|
4408
|
+
|
4289
4409
|
# 通过任务查询表的血缘关系
|
4290
4410
|
|
4291
4411
|
# @param request: Request instance for DescribeTaskLineage.
|
@@ -4574,6 +4694,30 @@ module TencentCloud
|
|
4574
4694
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4575
4695
|
end
|
4576
4696
|
|
4697
|
+
# 根据文件夹查询工作流
|
4698
|
+
|
4699
|
+
# @param request: Request instance for DescribeWorkflowByFordIds.
|
4700
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeWorkflowByFordIdsRequest`
|
4701
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeWorkflowByFordIdsResponse`
|
4702
|
+
def DescribeWorkflowByFordIds(request)
|
4703
|
+
body = send_request('DescribeWorkflowByFordIds', request.serialize)
|
4704
|
+
response = JSON.parse(body)
|
4705
|
+
if response['Response'].key?('Error') == false
|
4706
|
+
model = DescribeWorkflowByFordIdsResponse.new
|
4707
|
+
model.deserialize(response['Response'])
|
4708
|
+
model
|
4709
|
+
else
|
4710
|
+
code = response['Response']['Error']['Code']
|
4711
|
+
message = response['Response']['Error']['Message']
|
4712
|
+
reqid = response['Response']['RequestId']
|
4713
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4714
|
+
end
|
4715
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4716
|
+
raise e
|
4717
|
+
rescue StandardError => e
|
4718
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4719
|
+
end
|
4720
|
+
|
4577
4721
|
# 查询工作流画布
|
4578
4722
|
|
4579
4723
|
# @param request: Request instance for DescribeWorkflowCanvasInfo.
|
@@ -5511,7 +5655,7 @@ module TencentCloud
|
|
5511
5655
|
end
|
5512
5656
|
|
5513
5657
|
# <p style="color:red;">[注意:该版本只满足广州区部分白名单客户使用]</p>
|
5514
|
-
#
|
5658
|
+
# 更新任务。本接口已废弃,请使用接口ModifyTaskInfoDs。
|
5515
5659
|
|
5516
5660
|
# @param request: Request instance for ModifyTaskInfo.
|
5517
5661
|
# @type request: :class:`Tencentcloud::wedata::V20210820::ModifyTaskInfoRequest`
|
@@ -5729,6 +5873,30 @@ module TencentCloud
|
|
5729
5873
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5730
5874
|
end
|
5731
5875
|
|
5876
|
+
# 注册事件监听者
|
5877
|
+
|
5878
|
+
# @param request: Request instance for RegisterDsEventListener.
|
5879
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::RegisterDsEventListenerRequest`
|
5880
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::RegisterDsEventListenerResponse`
|
5881
|
+
def RegisterDsEventListener(request)
|
5882
|
+
body = send_request('RegisterDsEventListener', request.serialize)
|
5883
|
+
response = JSON.parse(body)
|
5884
|
+
if response['Response'].key?('Error') == false
|
5885
|
+
model = RegisterDsEventListenerResponse.new
|
5886
|
+
model.deserialize(response['Response'])
|
5887
|
+
model
|
5888
|
+
else
|
5889
|
+
code = response['Response']['Error']['Code']
|
5890
|
+
message = response['Response']['Error']['Message']
|
5891
|
+
reqid = response['Response']['RequestId']
|
5892
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5893
|
+
end
|
5894
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5895
|
+
raise e
|
5896
|
+
rescue StandardError => e
|
5897
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5898
|
+
end
|
5899
|
+
|
5732
5900
|
# <p style="color:red;">[注意:该版本只满足广州区部分白名单客户使用]</p>
|
5733
5901
|
# 注册事件。本接口已废弃,请使用接口RegisterDsEvent。
|
5734
5902
|
|
@@ -5755,7 +5923,7 @@ module TencentCloud
|
|
5755
5923
|
end
|
5756
5924
|
|
5757
5925
|
# <p style="color:red;">[注意:该版本只满足广州区部分白名单客户使用]</p>
|
5758
|
-
#
|
5926
|
+
# 注册事件监听器。本接口已废弃,请使用接口RegisterDsEventListener。
|
5759
5927
|
|
5760
5928
|
# @param request: Request instance for RegisterEventListener.
|
5761
5929
|
# @type request: :class:`Tencentcloud::wedata::V20210820::RegisterEventListenerRequest`
|