tencentcloud-sdk-dlc 3.0.901 → 3.0.902
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/v20210125/client.rb +48 -0
- data/lib/v20210125/models.rb +75 -0
- 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: dc1ee3cc878ce84863129e55a91906591b59a7d0
|
4
|
+
data.tar.gz: 1d46e21e847a8f99defc32c4b51aa06722731939
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 29d6812ff8d1f67fb093c5b21ee181c367d09ce7d527680782a4dde528231ecbf435d10ecbd37e72c549a6ddade83b55c58c02812879d19aa0d979f20a33e96b
|
7
|
+
data.tar.gz: 004d9047a8917d4f776af7c8cc53ee32caca6c4a06938a46788229233258d4af331c502ebe7378e0320f6e2e08b49cf60ae1cb97af594091929fac8ece0640ab
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.902
|
data/lib/v20210125/client.rb
CHANGED
@@ -1133,6 +1133,30 @@ module TencentCloud
|
|
1133
1133
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1134
1134
|
end
|
1135
1135
|
|
1136
|
+
# 删除表
|
1137
|
+
|
1138
|
+
# @param request: Request instance for DeleteTable.
|
1139
|
+
# @type request: :class:`Tencentcloud::dlc::V20210125::DeleteTableRequest`
|
1140
|
+
# @rtype: :class:`Tencentcloud::dlc::V20210125::DeleteTableResponse`
|
1141
|
+
def DeleteTable(request)
|
1142
|
+
body = send_request('DeleteTable', request.serialize)
|
1143
|
+
response = JSON.parse(body)
|
1144
|
+
if response['Response'].key?('Error') == false
|
1145
|
+
model = DeleteTableResponse.new
|
1146
|
+
model.deserialize(response['Response'])
|
1147
|
+
model
|
1148
|
+
else
|
1149
|
+
code = response['Response']['Error']['Code']
|
1150
|
+
message = response['Response']['Error']['Message']
|
1151
|
+
reqid = response['Response']['RequestId']
|
1152
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1153
|
+
end
|
1154
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1155
|
+
raise e
|
1156
|
+
rescue StandardError => e
|
1157
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1158
|
+
end
|
1159
|
+
|
1136
1160
|
# 本接口(RegisterThirdPartyAccessUser)用于移除第三方平台访问
|
1137
1161
|
|
1138
1162
|
# @param request: Request instance for DeleteThirdPartyAccessUser.
|
@@ -2981,6 +3005,30 @@ module TencentCloud
|
|
2981
3005
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2982
3006
|
end
|
2983
3007
|
|
3008
|
+
# 本接口(QueryInternalTableWarehouse)用于获取原生表warehouse路径
|
3009
|
+
|
3010
|
+
# @param request: Request instance for QueryInternalTableWarehouse.
|
3011
|
+
# @type request: :class:`Tencentcloud::dlc::V20210125::QueryInternalTableWarehouseRequest`
|
3012
|
+
# @rtype: :class:`Tencentcloud::dlc::V20210125::QueryInternalTableWarehouseResponse`
|
3013
|
+
def QueryInternalTableWarehouse(request)
|
3014
|
+
body = send_request('QueryInternalTableWarehouse', request.serialize)
|
3015
|
+
response = JSON.parse(body)
|
3016
|
+
if response['Response'].key?('Error') == false
|
3017
|
+
model = QueryInternalTableWarehouseResponse.new
|
3018
|
+
model.deserialize(response['Response'])
|
3019
|
+
model
|
3020
|
+
else
|
3021
|
+
code = response['Response']['Error']['Code']
|
3022
|
+
message = response['Response']['Error']['Message']
|
3023
|
+
reqid = response['Response']['RequestId']
|
3024
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3025
|
+
end
|
3026
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3027
|
+
raise e
|
3028
|
+
rescue StandardError => e
|
3029
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3030
|
+
end
|
3031
|
+
|
2984
3032
|
# 获取任务结果查询
|
2985
3033
|
|
2986
3034
|
# @param request: Request instance for QueryResult.
|
data/lib/v20210125/models.rb
CHANGED
@@ -4566,6 +4566,41 @@ module TencentCloud
|
|
4566
4566
|
end
|
4567
4567
|
end
|
4568
4568
|
|
4569
|
+
# DeleteTable请求参数结构体
|
4570
|
+
class DeleteTableRequest < TencentCloud::Common::AbstractModel
|
4571
|
+
# @param TableBaseInfo: 表基本信息
|
4572
|
+
# @type TableBaseInfo: :class:`Tencentcloud::Dlc.v20210125.models.TableBaseInfo`
|
4573
|
+
|
4574
|
+
attr_accessor :TableBaseInfo
|
4575
|
+
|
4576
|
+
def initialize(tablebaseinfo=nil)
|
4577
|
+
@TableBaseInfo = tablebaseinfo
|
4578
|
+
end
|
4579
|
+
|
4580
|
+
def deserialize(params)
|
4581
|
+
unless params['TableBaseInfo'].nil?
|
4582
|
+
@TableBaseInfo = TableBaseInfo.new
|
4583
|
+
@TableBaseInfo.deserialize(params['TableBaseInfo'])
|
4584
|
+
end
|
4585
|
+
end
|
4586
|
+
end
|
4587
|
+
|
4588
|
+
# DeleteTable返回参数结构体
|
4589
|
+
class DeleteTableResponse < TencentCloud::Common::AbstractModel
|
4590
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4591
|
+
# @type RequestId: String
|
4592
|
+
|
4593
|
+
attr_accessor :RequestId
|
4594
|
+
|
4595
|
+
def initialize(requestid=nil)
|
4596
|
+
@RequestId = requestid
|
4597
|
+
end
|
4598
|
+
|
4599
|
+
def deserialize(params)
|
4600
|
+
@RequestId = params['RequestId']
|
4601
|
+
end
|
4602
|
+
end
|
4603
|
+
|
4569
4604
|
# DeleteThirdPartyAccessUser请求参数结构体
|
4570
4605
|
class DeleteThirdPartyAccessUserRequest < TencentCloud::Common::AbstractModel
|
4571
4606
|
|
@@ -10476,6 +10511,46 @@ module TencentCloud
|
|
10476
10511
|
end
|
10477
10512
|
end
|
10478
10513
|
|
10514
|
+
# QueryInternalTableWarehouse请求参数结构体
|
10515
|
+
class QueryInternalTableWarehouseRequest < TencentCloud::Common::AbstractModel
|
10516
|
+
# @param DatabaseName: 库名
|
10517
|
+
# @type DatabaseName: String
|
10518
|
+
# @param TableName: 表名
|
10519
|
+
# @type TableName: String
|
10520
|
+
|
10521
|
+
attr_accessor :DatabaseName, :TableName
|
10522
|
+
|
10523
|
+
def initialize(databasename=nil, tablename=nil)
|
10524
|
+
@DatabaseName = databasename
|
10525
|
+
@TableName = tablename
|
10526
|
+
end
|
10527
|
+
|
10528
|
+
def deserialize(params)
|
10529
|
+
@DatabaseName = params['DatabaseName']
|
10530
|
+
@TableName = params['TableName']
|
10531
|
+
end
|
10532
|
+
end
|
10533
|
+
|
10534
|
+
# QueryInternalTableWarehouse返回参数结构体
|
10535
|
+
class QueryInternalTableWarehouseResponse < TencentCloud::Common::AbstractModel
|
10536
|
+
# @param WarehousePath: warehouse路径
|
10537
|
+
# @type WarehousePath: String
|
10538
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
10539
|
+
# @type RequestId: String
|
10540
|
+
|
10541
|
+
attr_accessor :WarehousePath, :RequestId
|
10542
|
+
|
10543
|
+
def initialize(warehousepath=nil, requestid=nil)
|
10544
|
+
@WarehousePath = warehousepath
|
10545
|
+
@RequestId = requestid
|
10546
|
+
end
|
10547
|
+
|
10548
|
+
def deserialize(params)
|
10549
|
+
@WarehousePath = params['WarehousePath']
|
10550
|
+
@RequestId = params['RequestId']
|
10551
|
+
end
|
10552
|
+
end
|
10553
|
+
|
10479
10554
|
# QueryResult请求参数结构体
|
10480
10555
|
class QueryResultRequest < TencentCloud::Common::AbstractModel
|
10481
10556
|
# @param TaskId: 任务ID
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-dlc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.902
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-09-
|
11
|
+
date: 2024-09-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|