tencentcloud-sdk-wedata 3.0.676 → 3.0.677
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 +195 -1
- data/lib/v20210820/models.rb +798 -67
- 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: 1b8fc693b3c38e8e438a4c4f2ed7123de5af34df
|
4
|
+
data.tar.gz: 65b28db65ecfae14e20941bb9ff6d1376203d4da
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e76939f8b21894c3f884779cb506efb2ebe989525a0b322fa70aa203f70ebd5bcfdf1a7d63cb4a474104a8807927a2b881dbb11be982282440283e6af04fc7b5
|
7
|
+
data.tar.gz: 904883127fdacf2656c9399a858da49882d8f11663e808e375c3e3e0c85f3eac1c4be9145d77ad4fe6953ac4b85670a0e207c1fa54dea55e1c68e52f10ba0912
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.677
|
data/lib/v20210820/client.rb
CHANGED
@@ -800,7 +800,7 @@ module TencentCloud
|
|
800
800
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
801
801
|
end
|
802
802
|
|
803
|
-
#
|
803
|
+
# 创建用户自定义函数
|
804
804
|
|
805
805
|
# @param request: Request instance for CreateCustomFunction.
|
806
806
|
# @type request: :class:`Tencentcloud::wedata::V20210820::CreateCustomFunctionRequest`
|
@@ -849,6 +849,30 @@ module TencentCloud
|
|
849
849
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
850
850
|
end
|
851
851
|
|
852
|
+
# 编排空间-创建文件夹
|
853
|
+
|
854
|
+
# @param request: Request instance for CreateDsFolder.
|
855
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::CreateDsFolderRequest`
|
856
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::CreateDsFolderResponse`
|
857
|
+
def CreateDsFolder(request)
|
858
|
+
body = send_request('CreateDsFolder', request.serialize)
|
859
|
+
response = JSON.parse(body)
|
860
|
+
if response['Response'].key?('Error') == false
|
861
|
+
model = CreateDsFolderResponse.new
|
862
|
+
model.deserialize(response['Response'])
|
863
|
+
model
|
864
|
+
else
|
865
|
+
code = response['Response']['Error']['Code']
|
866
|
+
message = response['Response']['Error']['Message']
|
867
|
+
reqid = response['Response']['RequestId']
|
868
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
869
|
+
end
|
870
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
871
|
+
raise e
|
872
|
+
rescue StandardError => e
|
873
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
874
|
+
end
|
875
|
+
|
852
876
|
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
853
877
|
# 创建文件夹
|
854
878
|
|
@@ -1309,6 +1333,30 @@ module TencentCloud
|
|
1309
1333
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1310
1334
|
end
|
1311
1335
|
|
1336
|
+
# 编排空间-删除文件夹
|
1337
|
+
|
1338
|
+
# @param request: Request instance for DeleteDsFolder.
|
1339
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DeleteDsFolderRequest`
|
1340
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DeleteDsFolderResponse`
|
1341
|
+
def DeleteDsFolder(request)
|
1342
|
+
body = send_request('DeleteDsFolder', request.serialize)
|
1343
|
+
response = JSON.parse(body)
|
1344
|
+
if response['Response'].key?('Error') == false
|
1345
|
+
model = DeleteDsFolderResponse.new
|
1346
|
+
model.deserialize(response['Response'])
|
1347
|
+
model
|
1348
|
+
else
|
1349
|
+
code = response['Response']['Error']['Code']
|
1350
|
+
message = response['Response']['Error']['Message']
|
1351
|
+
reqid = response['Response']['RequestId']
|
1352
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1353
|
+
end
|
1354
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1355
|
+
raise e
|
1356
|
+
rescue StandardError => e
|
1357
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1358
|
+
end
|
1359
|
+
|
1312
1360
|
# 删除文件
|
1313
1361
|
|
1314
1362
|
# @param request: Request instance for DeleteFile.
|
@@ -2515,6 +2563,54 @@ module TencentCloud
|
|
2515
2563
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2516
2564
|
end
|
2517
2565
|
|
2566
|
+
# 查询目录树
|
2567
|
+
|
2568
|
+
# @param request: Request instance for DescribeDsFolderTree.
|
2569
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDsFolderTreeRequest`
|
2570
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDsFolderTreeResponse`
|
2571
|
+
def DescribeDsFolderTree(request)
|
2572
|
+
body = send_request('DescribeDsFolderTree', request.serialize)
|
2573
|
+
response = JSON.parse(body)
|
2574
|
+
if response['Response'].key?('Error') == false
|
2575
|
+
model = DescribeDsFolderTreeResponse.new
|
2576
|
+
model.deserialize(response['Response'])
|
2577
|
+
model
|
2578
|
+
else
|
2579
|
+
code = response['Response']['Error']['Code']
|
2580
|
+
message = response['Response']['Error']['Message']
|
2581
|
+
reqid = response['Response']['RequestId']
|
2582
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2583
|
+
end
|
2584
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2585
|
+
raise e
|
2586
|
+
rescue StandardError => e
|
2587
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2588
|
+
end
|
2589
|
+
|
2590
|
+
# 查询父目录树,用于工作流、任务定位
|
2591
|
+
|
2592
|
+
# @param request: Request instance for DescribeDsParentFolderTree.
|
2593
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeDsParentFolderTreeRequest`
|
2594
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeDsParentFolderTreeResponse`
|
2595
|
+
def DescribeDsParentFolderTree(request)
|
2596
|
+
body = send_request('DescribeDsParentFolderTree', request.serialize)
|
2597
|
+
response = JSON.parse(body)
|
2598
|
+
if response['Response'].key?('Error') == false
|
2599
|
+
model = DescribeDsParentFolderTreeResponse.new
|
2600
|
+
model.deserialize(response['Response'])
|
2601
|
+
model
|
2602
|
+
else
|
2603
|
+
code = response['Response']['Error']['Code']
|
2604
|
+
message = response['Response']['Error']['Message']
|
2605
|
+
reqid = response['Response']['RequestId']
|
2606
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2607
|
+
end
|
2608
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2609
|
+
raise e
|
2610
|
+
rescue StandardError => e
|
2611
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2612
|
+
end
|
2613
|
+
|
2518
2614
|
# 根据项目ID和事件名称查看事件详情
|
2519
2615
|
|
2520
2616
|
# @param request: Request instance for DescribeEvent.
|
@@ -3430,6 +3526,8 @@ module TencentCloud
|
|
3430
3526
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3431
3527
|
end
|
3432
3528
|
|
3529
|
+
# 没用到
|
3530
|
+
|
3433
3531
|
# 获取kafka的topic信息
|
3434
3532
|
|
3435
3533
|
# @param request: Request instance for DescribeKafkaTopicInfo.
|
@@ -5572,6 +5670,30 @@ module TencentCloud
|
|
5572
5670
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5573
5671
|
end
|
5574
5672
|
|
5673
|
+
# 查找全部的文件夹
|
5674
|
+
|
5675
|
+
# @param request: Request instance for FindAllFolder.
|
5676
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::FindAllFolderRequest`
|
5677
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::FindAllFolderResponse`
|
5678
|
+
def FindAllFolder(request)
|
5679
|
+
body = send_request('FindAllFolder', request.serialize)
|
5680
|
+
response = JSON.parse(body)
|
5681
|
+
if response['Response'].key?('Error') == false
|
5682
|
+
model = FindAllFolderResponse.new
|
5683
|
+
model.deserialize(response['Response'])
|
5684
|
+
model
|
5685
|
+
else
|
5686
|
+
code = response['Response']['Error']['Code']
|
5687
|
+
message = response['Response']['Error']['Message']
|
5688
|
+
reqid = response['Response']['RequestId']
|
5689
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5690
|
+
end
|
5691
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5692
|
+
raise e
|
5693
|
+
rescue StandardError => e
|
5694
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5695
|
+
end
|
5696
|
+
|
5575
5697
|
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
5576
5698
|
# 实例批量置成功
|
5577
5699
|
|
@@ -6109,6 +6231,30 @@ module TencentCloud
|
|
6109
6231
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6110
6232
|
end
|
6111
6233
|
|
6234
|
+
# 数据开发模块-文件夹更新
|
6235
|
+
|
6236
|
+
# @param request: Request instance for ModifyDsFolder.
|
6237
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::ModifyDsFolderRequest`
|
6238
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::ModifyDsFolderResponse`
|
6239
|
+
def ModifyDsFolder(request)
|
6240
|
+
body = send_request('ModifyDsFolder', request.serialize)
|
6241
|
+
response = JSON.parse(body)
|
6242
|
+
if response['Response'].key?('Error') == false
|
6243
|
+
model = ModifyDsFolderResponse.new
|
6244
|
+
model.deserialize(response['Response'])
|
6245
|
+
model
|
6246
|
+
else
|
6247
|
+
code = response['Response']['Error']['Code']
|
6248
|
+
message = response['Response']['Error']['Message']
|
6249
|
+
reqid = response['Response']['RequestId']
|
6250
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6251
|
+
end
|
6252
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6253
|
+
raise e
|
6254
|
+
rescue StandardError => e
|
6255
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6256
|
+
end
|
6257
|
+
|
6112
6258
|
# 更新规则组执行策略
|
6113
6259
|
|
6114
6260
|
# @param request: Request instance for ModifyExecStrategy.
|
@@ -6694,6 +6840,54 @@ module TencentCloud
|
|
6694
6840
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6695
6841
|
end
|
6696
6842
|
|
6843
|
+
# 实例强制成功
|
6844
|
+
|
6845
|
+
# @param request: Request instance for RunForceSucScheduleInstances.
|
6846
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::RunForceSucScheduleInstancesRequest`
|
6847
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::RunForceSucScheduleInstancesResponse`
|
6848
|
+
def RunForceSucScheduleInstances(request)
|
6849
|
+
body = send_request('RunForceSucScheduleInstances', request.serialize)
|
6850
|
+
response = JSON.parse(body)
|
6851
|
+
if response['Response'].key?('Error') == false
|
6852
|
+
model = RunForceSucScheduleInstancesResponse.new
|
6853
|
+
model.deserialize(response['Response'])
|
6854
|
+
model
|
6855
|
+
else
|
6856
|
+
code = response['Response']['Error']['Code']
|
6857
|
+
message = response['Response']['Error']['Message']
|
6858
|
+
reqid = response['Response']['RequestId']
|
6859
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6860
|
+
end
|
6861
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6862
|
+
raise e
|
6863
|
+
rescue StandardError => e
|
6864
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6865
|
+
end
|
6866
|
+
|
6867
|
+
# 实例批量重跑
|
6868
|
+
|
6869
|
+
# @param request: Request instance for RunRerunScheduleInstances.
|
6870
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::RunRerunScheduleInstancesRequest`
|
6871
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::RunRerunScheduleInstancesResponse`
|
6872
|
+
def RunRerunScheduleInstances(request)
|
6873
|
+
body = send_request('RunRerunScheduleInstances', request.serialize)
|
6874
|
+
response = JSON.parse(body)
|
6875
|
+
if response['Response'].key?('Error') == false
|
6876
|
+
model = RunRerunScheduleInstancesResponse.new
|
6877
|
+
model.deserialize(response['Response'])
|
6878
|
+
model
|
6879
|
+
else
|
6880
|
+
code = response['Response']['Error']['Code']
|
6881
|
+
message = response['Response']['Error']['Message']
|
6882
|
+
reqid = response['Response']['RequestId']
|
6883
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
6884
|
+
end
|
6885
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
6886
|
+
raise e
|
6887
|
+
rescue StandardError => e
|
6888
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
6889
|
+
end
|
6890
|
+
|
6697
6891
|
# <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
|
6698
6892
|
# 运行任务
|
6699
6893
|
|