tencentcloud-sdk-wedata 3.0.893 → 3.0.895
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210820/client.rb +144 -0
- data/lib/v20210820/models.rb +1008 -4
- 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: a35c97535c6b725dde73dc2a02c17c31d0b3e659
|
4
|
+
data.tar.gz: 823c7d6b03486e3a12f75e0529616a7c8a8ff867
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 481065c7cb1da901c053064035ba5b6de866355ab2d79571a7a2c93d2019cbe1fcd72099648d98b6013de86b4b17154e8a9f66703d1faea2d652ab96919433db
|
7
|
+
data.tar.gz: ec6fcfac0d301ce33ac6a4c00d1b1ff71340c43f2093751127e6b7af157770da07d9519d87ab740147270c4af0123d1dd0a1415435b8a2bea30b54b5820c2bc0
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.895
|
data/lib/v20210820/client.rb
CHANGED
@@ -53,6 +53,30 @@ module TencentCloud
|
|
53
53
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
54
54
|
end
|
55
55
|
|
56
|
+
# 异步批量创建任务版本
|
57
|
+
|
58
|
+
# @param request: Request instance for BatchCreateTaskVersionAsync.
|
59
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::BatchCreateTaskVersionAsyncRequest`
|
60
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::BatchCreateTaskVersionAsyncResponse`
|
61
|
+
def BatchCreateTaskVersionAsync(request)
|
62
|
+
body = send_request('BatchCreateTaskVersionAsync', request.serialize)
|
63
|
+
response = JSON.parse(body)
|
64
|
+
if response['Response'].key?('Error') == false
|
65
|
+
model = BatchCreateTaskVersionAsyncResponse.new
|
66
|
+
model.deserialize(response['Response'])
|
67
|
+
model
|
68
|
+
else
|
69
|
+
code = response['Response']['Error']['Code']
|
70
|
+
message = response['Response']['Error']['Message']
|
71
|
+
reqid = response['Response']['RequestId']
|
72
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
73
|
+
end
|
74
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
75
|
+
raise e
|
76
|
+
rescue StandardError => e
|
77
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
78
|
+
end
|
79
|
+
|
56
80
|
# 批量删除集成任务
|
57
81
|
|
58
82
|
# @param request: Request instance for BatchDeleteIntegrationTasks.
|
@@ -2717,6 +2741,30 @@ module TencentCloud
|
|
2717
2741
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2718
2742
|
end
|
2719
2743
|
|
2744
|
+
# 获取待提交任务预提交校验信息
|
2745
|
+
|
2746
|
+
# @param request: Request instance for DescribePendingSubmitTaskList.
|
2747
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribePendingSubmitTaskListRequest`
|
2748
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribePendingSubmitTaskListResponse`
|
2749
|
+
def DescribePendingSubmitTaskList(request)
|
2750
|
+
body = send_request('DescribePendingSubmitTaskList', request.serialize)
|
2751
|
+
response = JSON.parse(body)
|
2752
|
+
if response['Response'].key?('Error') == false
|
2753
|
+
model = DescribePendingSubmitTaskListResponse.new
|
2754
|
+
model.deserialize(response['Response'])
|
2755
|
+
model
|
2756
|
+
else
|
2757
|
+
code = response['Response']['Error']['Code']
|
2758
|
+
message = response['Response']['Error']['Message']
|
2759
|
+
reqid = response['Response']['RequestId']
|
2760
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2761
|
+
end
|
2762
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2763
|
+
raise e
|
2764
|
+
rescue StandardError => e
|
2765
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2766
|
+
end
|
2767
|
+
|
2720
2768
|
# 获取项目信息
|
2721
2769
|
|
2722
2770
|
# @param request: Request instance for DescribeProject.
|
@@ -4064,6 +4112,30 @@ module TencentCloud
|
|
4064
4112
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4065
4113
|
end
|
4066
4114
|
|
4115
|
+
# 获取工作流调度信息
|
4116
|
+
|
4117
|
+
# @param request: Request instance for DescribeWorkflowSchedulerInfoDs.
|
4118
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeWorkflowSchedulerInfoDsRequest`
|
4119
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeWorkflowSchedulerInfoDsResponse`
|
4120
|
+
def DescribeWorkflowSchedulerInfoDs(request)
|
4121
|
+
body = send_request('DescribeWorkflowSchedulerInfoDs', request.serialize)
|
4122
|
+
response = JSON.parse(body)
|
4123
|
+
if response['Response'].key?('Error') == false
|
4124
|
+
model = DescribeWorkflowSchedulerInfoDsResponse.new
|
4125
|
+
model.deserialize(response['Response'])
|
4126
|
+
model
|
4127
|
+
else
|
4128
|
+
code = response['Response']['Error']['Code']
|
4129
|
+
message = response['Response']['Error']['Message']
|
4130
|
+
reqid = response['Response']['RequestId']
|
4131
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4132
|
+
end
|
4133
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4134
|
+
raise e
|
4135
|
+
rescue StandardError => e
|
4136
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4137
|
+
end
|
4138
|
+
|
4067
4139
|
# 查询工作流任务数
|
4068
4140
|
|
4069
4141
|
# @param request: Request instance for DescribeWorkflowTaskCount.
|
@@ -4232,6 +4304,30 @@ module TencentCloud
|
|
4232
4304
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4233
4305
|
end
|
4234
4306
|
|
4307
|
+
# 获取cos token
|
4308
|
+
|
4309
|
+
# @param request: Request instance for GetCosToken.
|
4310
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::GetCosTokenRequest`
|
4311
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::GetCosTokenResponse`
|
4312
|
+
def GetCosToken(request)
|
4313
|
+
body = send_request('GetCosToken', request.serialize)
|
4314
|
+
response = JSON.parse(body)
|
4315
|
+
if response['Response'].key?('Error') == false
|
4316
|
+
model = GetCosTokenResponse.new
|
4317
|
+
model.deserialize(response['Response'])
|
4318
|
+
model
|
4319
|
+
else
|
4320
|
+
code = response['Response']['Error']['Code']
|
4321
|
+
message = response['Response']['Error']['Message']
|
4322
|
+
reqid = response['Response']['RequestId']
|
4323
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4324
|
+
end
|
4325
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4326
|
+
raise e
|
4327
|
+
rescue StandardError => e
|
4328
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4329
|
+
end
|
4330
|
+
|
4235
4331
|
# 开发空间-获取数据开发脚本信息
|
4236
4332
|
|
4237
4333
|
# @param request: Request instance for GetFileInfo.
|
@@ -4328,6 +4424,30 @@ module TencentCloud
|
|
4328
4424
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4329
4425
|
end
|
4330
4426
|
|
4427
|
+
# 资源管理-判断资源文件是否存在
|
4428
|
+
|
4429
|
+
# @param request: Request instance for JudgeResourceFile.
|
4430
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::JudgeResourceFileRequest`
|
4431
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::JudgeResourceFileResponse`
|
4432
|
+
def JudgeResourceFile(request)
|
4433
|
+
body = send_request('JudgeResourceFile', request.serialize)
|
4434
|
+
response = JSON.parse(body)
|
4435
|
+
if response['Response'].key?('Error') == false
|
4436
|
+
model = JudgeResourceFileResponse.new
|
4437
|
+
model.deserialize(response['Response'])
|
4438
|
+
model
|
4439
|
+
else
|
4440
|
+
code = response['Response']['Error']['Code']
|
4441
|
+
message = response['Response']['Error']['Message']
|
4442
|
+
reqid = response['Response']['RequestId']
|
4443
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4444
|
+
end
|
4445
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4446
|
+
raise e
|
4447
|
+
rescue StandardError => e
|
4448
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4449
|
+
end
|
4450
|
+
|
4331
4451
|
# 按补录计划批量终止实例。
|
4332
4452
|
|
4333
4453
|
# @param request: Request instance for KillOpsMakePlanInstances.
|
@@ -4933,6 +5053,30 @@ module TencentCloud
|
|
4933
5053
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4934
5054
|
end
|
4935
5055
|
|
5056
|
+
# 更新工作流下任务调度信息
|
5057
|
+
|
5058
|
+
# @param request: Request instance for RenewWorkflowSchedulerInfoDs.
|
5059
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::RenewWorkflowSchedulerInfoDsRequest`
|
5060
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::RenewWorkflowSchedulerInfoDsResponse`
|
5061
|
+
def RenewWorkflowSchedulerInfoDs(request)
|
5062
|
+
body = send_request('RenewWorkflowSchedulerInfoDs', request.serialize)
|
5063
|
+
response = JSON.parse(body)
|
5064
|
+
if response['Response'].key?('Error') == false
|
5065
|
+
model = RenewWorkflowSchedulerInfoDsResponse.new
|
5066
|
+
model.deserialize(response['Response'])
|
5067
|
+
model
|
5068
|
+
else
|
5069
|
+
code = response['Response']['Error']['Code']
|
5070
|
+
message = response['Response']['Error']['Message']
|
5071
|
+
reqid = response['Response']['RequestId']
|
5072
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5073
|
+
end
|
5074
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5075
|
+
raise e
|
5076
|
+
rescue StandardError => e
|
5077
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5078
|
+
end
|
5079
|
+
|
4936
5080
|
# 继续集成任务
|
4937
5081
|
|
4938
5082
|
# @param request: Request instance for ResumeIntegrationTask.
|