tencentcloud-sdk-dlc 3.0.681 → 3.0.682
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 +80 -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: ff160d7f6a505371239bb7a5a590af3ca25df01e
|
4
|
+
data.tar.gz: 132e066317e343a7ef122402c6909200e309c3e2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2760a82689062f3b9f7ed876df83d20d9ced4acb6863c82dc6d384adf99f7b5fcaf92652e73110896276a9ab7c1dc51204a2ccf0ae5ac4cf88ba2dc26c305eb0
|
7
|
+
data.tar.gz: df3107e58ece2616b8d6ceb411a68dfb8ac5aa6557fc318b10b68e561b04c76869a806137adefe2e54768900a02be3bbaf7ef3b62638cce98750a73f4d7e5b77
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.682
|
data/lib/v20210125/client.rb
CHANGED
@@ -1109,6 +1109,30 @@ module TencentCloud
|
|
1109
1109
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1110
1110
|
end
|
1111
1111
|
|
1112
|
+
# 查询sql查询界面高级设置
|
1113
|
+
|
1114
|
+
# @param request: Request instance for DescribeAdvancedStoreLocation.
|
1115
|
+
# @type request: :class:`Tencentcloud::dlc::V20210125::DescribeAdvancedStoreLocationRequest`
|
1116
|
+
# @rtype: :class:`Tencentcloud::dlc::V20210125::DescribeAdvancedStoreLocationResponse`
|
1117
|
+
def DescribeAdvancedStoreLocation(request)
|
1118
|
+
body = send_request('DescribeAdvancedStoreLocation', request.serialize)
|
1119
|
+
response = JSON.parse(body)
|
1120
|
+
if response['Response'].key?('Error') == false
|
1121
|
+
model = DescribeAdvancedStoreLocationResponse.new
|
1122
|
+
model.deserialize(response['Response'])
|
1123
|
+
model
|
1124
|
+
else
|
1125
|
+
code = response['Response']['Error']['Code']
|
1126
|
+
message = response['Response']['Error']['Message']
|
1127
|
+
reqid = response['Response']['RequestId']
|
1128
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1129
|
+
end
|
1130
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1131
|
+
raise e
|
1132
|
+
rescue StandardError => e
|
1133
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1134
|
+
end
|
1135
|
+
|
1112
1136
|
# DMS元数据获取库
|
1113
1137
|
|
1114
1138
|
# @param request: Request instance for DescribeDMSDatabase.
|
@@ -2309,6 +2333,30 @@ module TencentCloud
|
|
2309
2333
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2310
2334
|
end
|
2311
2335
|
|
2336
|
+
# 修改sql查询界面高级设置。
|
2337
|
+
|
2338
|
+
# @param request: Request instance for ModifyAdvancedStoreLocation.
|
2339
|
+
# @type request: :class:`Tencentcloud::dlc::V20210125::ModifyAdvancedStoreLocationRequest`
|
2340
|
+
# @rtype: :class:`Tencentcloud::dlc::V20210125::ModifyAdvancedStoreLocationResponse`
|
2341
|
+
def ModifyAdvancedStoreLocation(request)
|
2342
|
+
body = send_request('ModifyAdvancedStoreLocation', request.serialize)
|
2343
|
+
response = JSON.parse(body)
|
2344
|
+
if response['Response'].key?('Error') == false
|
2345
|
+
model = ModifyAdvancedStoreLocationResponse.new
|
2346
|
+
model.deserialize(response['Response'])
|
2347
|
+
model
|
2348
|
+
else
|
2349
|
+
code = response['Response']['Error']['Code']
|
2350
|
+
message = response['Response']['Error']['Message']
|
2351
|
+
reqid = response['Response']['RequestId']
|
2352
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2353
|
+
end
|
2354
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2355
|
+
raise e
|
2356
|
+
rescue StandardError => e
|
2357
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2358
|
+
end
|
2359
|
+
|
2312
2360
|
# 修改引擎描述信息
|
2313
2361
|
|
2314
2362
|
# @param request: Request instance for ModifyDataEngineDescription.
|
data/lib/v20210125/models.rb
CHANGED
@@ -4101,6 +4101,50 @@ module TencentCloud
|
|
4101
4101
|
end
|
4102
4102
|
end
|
4103
4103
|
|
4104
|
+
# DescribeAdvancedStoreLocation请求参数结构体
|
4105
|
+
class DescribeAdvancedStoreLocationRequest < TencentCloud::Common::AbstractModel
|
4106
|
+
|
4107
|
+
|
4108
|
+
def initialize()
|
4109
|
+
end
|
4110
|
+
|
4111
|
+
def deserialize(params)
|
4112
|
+
end
|
4113
|
+
end
|
4114
|
+
|
4115
|
+
# DescribeAdvancedStoreLocation返回参数结构体
|
4116
|
+
class DescribeAdvancedStoreLocationResponse < TencentCloud::Common::AbstractModel
|
4117
|
+
# @param Enable: 是否启用高级设置:0-否,1-是
|
4118
|
+
# @type Enable: Integer
|
4119
|
+
# @param StoreLocation: 查询结果保存cos路径
|
4120
|
+
# @type StoreLocation: String
|
4121
|
+
# @param HasLakeFs: 是否有托管存储权限
|
4122
|
+
# @type HasLakeFs: Boolean
|
4123
|
+
# @param LakeFsStatus: 托管存储状态,HasLakeFs等于true时,该值才有意义
|
4124
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4125
|
+
# @type LakeFsStatus: String
|
4126
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
4127
|
+
# @type RequestId: String
|
4128
|
+
|
4129
|
+
attr_accessor :Enable, :StoreLocation, :HasLakeFs, :LakeFsStatus, :RequestId
|
4130
|
+
|
4131
|
+
def initialize(enable=nil, storelocation=nil, haslakefs=nil, lakefsstatus=nil, requestid=nil)
|
4132
|
+
@Enable = enable
|
4133
|
+
@StoreLocation = storelocation
|
4134
|
+
@HasLakeFs = haslakefs
|
4135
|
+
@LakeFsStatus = lakefsstatus
|
4136
|
+
@RequestId = requestid
|
4137
|
+
end
|
4138
|
+
|
4139
|
+
def deserialize(params)
|
4140
|
+
@Enable = params['Enable']
|
4141
|
+
@StoreLocation = params['StoreLocation']
|
4142
|
+
@HasLakeFs = params['HasLakeFs']
|
4143
|
+
@LakeFsStatus = params['LakeFsStatus']
|
4144
|
+
@RequestId = params['RequestId']
|
4145
|
+
end
|
4146
|
+
end
|
4147
|
+
|
4104
4148
|
# DescribeDMSDatabase请求参数结构体
|
4105
4149
|
class DescribeDMSDatabaseRequest < TencentCloud::Common::AbstractModel
|
4106
4150
|
# @param Name: 数据库名称
|
@@ -7680,6 +7724,42 @@ module TencentCloud
|
|
7680
7724
|
end
|
7681
7725
|
end
|
7682
7726
|
|
7727
|
+
# ModifyAdvancedStoreLocation请求参数结构体
|
7728
|
+
class ModifyAdvancedStoreLocationRequest < TencentCloud::Common::AbstractModel
|
7729
|
+
# @param StoreLocation: 查询结果保存cos路径
|
7730
|
+
# @type StoreLocation: String
|
7731
|
+
# @param Enable: 是否启用高级设置:0-否,1-是
|
7732
|
+
# @type Enable: Integer
|
7733
|
+
|
7734
|
+
attr_accessor :StoreLocation, :Enable
|
7735
|
+
|
7736
|
+
def initialize(storelocation=nil, enable=nil)
|
7737
|
+
@StoreLocation = storelocation
|
7738
|
+
@Enable = enable
|
7739
|
+
end
|
7740
|
+
|
7741
|
+
def deserialize(params)
|
7742
|
+
@StoreLocation = params['StoreLocation']
|
7743
|
+
@Enable = params['Enable']
|
7744
|
+
end
|
7745
|
+
end
|
7746
|
+
|
7747
|
+
# ModifyAdvancedStoreLocation返回参数结构体
|
7748
|
+
class ModifyAdvancedStoreLocationResponse < TencentCloud::Common::AbstractModel
|
7749
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
7750
|
+
# @type RequestId: String
|
7751
|
+
|
7752
|
+
attr_accessor :RequestId
|
7753
|
+
|
7754
|
+
def initialize(requestid=nil)
|
7755
|
+
@RequestId = requestid
|
7756
|
+
end
|
7757
|
+
|
7758
|
+
def deserialize(params)
|
7759
|
+
@RequestId = params['RequestId']
|
7760
|
+
end
|
7761
|
+
end
|
7762
|
+
|
7683
7763
|
# ModifyDataEngineDescription请求参数结构体
|
7684
7764
|
class ModifyDataEngineDescriptionRequest < TencentCloud::Common::AbstractModel
|
7685
7765
|
# @param DataEngineName: 要修改的引擎的名称
|
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.682
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-10-
|
11
|
+
date: 2023-10-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|