tencentcloud-sdk-wedata 3.0.1076 → 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 +147 -3
- data/lib/v20210820/models.rb +2155 -9
- 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`
|
@@ -3079,6 +3103,30 @@ module TencentCloud
|
|
3079
3103
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3080
3104
|
end
|
3081
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
|
+
|
3082
3130
|
# 获取待提交任务预提交校验信息(注意:工作流编号或者任务编号列表,必须填一项)
|
3083
3131
|
|
3084
3132
|
# @param request: Request instance for DescribePendingSubmitTaskList.
|
@@ -3295,6 +3343,30 @@ module TencentCloud
|
|
3295
3343
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3296
3344
|
end
|
3297
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
|
+
|
3298
3370
|
# 查询上报任务详情
|
3299
3371
|
|
3300
3372
|
# @param request: Request instance for DescribeReportTaskDetail.
|
@@ -4310,6 +4382,30 @@ module TencentCloud
|
|
4310
4382
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4311
4383
|
end
|
4312
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
|
+
|
4313
4409
|
# 通过任务查询表的血缘关系
|
4314
4410
|
|
4315
4411
|
# @param request: Request instance for DescribeTaskLineage.
|
@@ -4598,6 +4694,30 @@ module TencentCloud
|
|
4598
4694
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4599
4695
|
end
|
4600
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
|
+
|
4601
4721
|
# 查询工作流画布
|
4602
4722
|
|
4603
4723
|
# @param request: Request instance for DescribeWorkflowCanvasInfo.
|
@@ -5535,7 +5655,7 @@ module TencentCloud
|
|
5535
5655
|
end
|
5536
5656
|
|
5537
5657
|
# <p style="color:red;">[注意:该版本只满足广州区部分白名单客户使用]</p>
|
5538
|
-
#
|
5658
|
+
# 更新任务。本接口已废弃,请使用接口ModifyTaskInfoDs。
|
5539
5659
|
|
5540
5660
|
# @param request: Request instance for ModifyTaskInfo.
|
5541
5661
|
# @type request: :class:`Tencentcloud::wedata::V20210820::ModifyTaskInfoRequest`
|
@@ -5753,6 +5873,30 @@ module TencentCloud
|
|
5753
5873
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5754
5874
|
end
|
5755
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
|
+
|
5756
5900
|
# <p style="color:red;">[注意:该版本只满足广州区部分白名单客户使用]</p>
|
5757
5901
|
# 注册事件。本接口已废弃,请使用接口RegisterDsEvent。
|
5758
5902
|
|
@@ -5779,7 +5923,7 @@ module TencentCloud
|
|
5779
5923
|
end
|
5780
5924
|
|
5781
5925
|
# <p style="color:red;">[注意:该版本只满足广州区部分白名单客户使用]</p>
|
5782
|
-
#
|
5926
|
+
# 注册事件监听器。本接口已废弃,请使用接口RegisterDsEventListener。
|
5783
5927
|
|
5784
5928
|
# @param request: Request instance for RegisterEventListener.
|
5785
5929
|
# @type request: :class:`Tencentcloud::wedata::V20210820::RegisterEventListenerRequest`
|