tencentcloud-sdk-dlc 3.0.505 → 3.0.507
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/v20210125/models.rb +51 -3
- 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: dbcbb85f19eab573e4fb9475bd98a6fc240bfaff
|
4
|
+
data.tar.gz: 265b90ac3c0be89bf69f986ea6daac9b7b0132a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7bc3c3bc9eaac97d029218ea19fab99d10d32d9d039ed9c63fa478162eb38a21dabe41a93a8ed2634cbe72c2756022980d6f13b0501f9e8f7847ac945bbd34fe
|
7
|
+
data.tar.gz: f3f4fcdf59000aa6cb98627ce6e308a40ecf32912d18e55efc00752860483925ff5e29188f031d9971798933ec98b222d4479831cf3cf51d987eec9c3d25452d
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.507
|
data/lib/v20210125/models.rb
CHANGED
@@ -5127,27 +5127,75 @@ module TencentCloud
|
|
5127
5127
|
|
5128
5128
|
# GenerateCreateMangedTableSql请求参数结构体
|
5129
5129
|
class GenerateCreateMangedTableSqlRequest < TencentCloud::Common::AbstractModel
|
5130
|
+
# @param TableBaseInfo: 表基本信息
|
5131
|
+
# @type TableBaseInfo: :class:`Tencentcloud::Dlc.v20210125.models.TableBaseInfo`
|
5132
|
+
# @param Columns: 表字段信息
|
5133
|
+
# @type Columns: Array
|
5134
|
+
# @param Partitions: 表分区信息
|
5135
|
+
# @type Partitions: Array
|
5136
|
+
# @param Properties: 表属性信息
|
5137
|
+
# @type Properties: Array
|
5130
5138
|
|
5139
|
+
attr_accessor :TableBaseInfo, :Columns, :Partitions, :Properties
|
5131
5140
|
|
5132
|
-
def initialize()
|
5141
|
+
def initialize(tablebaseinfo=nil, columns=nil, partitions=nil, properties=nil)
|
5142
|
+
@TableBaseInfo = tablebaseinfo
|
5143
|
+
@Columns = columns
|
5144
|
+
@Partitions = partitions
|
5145
|
+
@Properties = properties
|
5133
5146
|
end
|
5134
5147
|
|
5135
5148
|
def deserialize(params)
|
5149
|
+
unless params['TableBaseInfo'].nil?
|
5150
|
+
@TableBaseInfo = TableBaseInfo.new
|
5151
|
+
@TableBaseInfo.deserialize(params['TableBaseInfo'])
|
5152
|
+
end
|
5153
|
+
unless params['Columns'].nil?
|
5154
|
+
@Columns = []
|
5155
|
+
params['Columns'].each do |i|
|
5156
|
+
tcolumn_tmp = TColumn.new
|
5157
|
+
tcolumn_tmp.deserialize(i)
|
5158
|
+
@Columns << tcolumn_tmp
|
5159
|
+
end
|
5160
|
+
end
|
5161
|
+
unless params['Partitions'].nil?
|
5162
|
+
@Partitions = []
|
5163
|
+
params['Partitions'].each do |i|
|
5164
|
+
tpartition_tmp = TPartition.new
|
5165
|
+
tpartition_tmp.deserialize(i)
|
5166
|
+
@Partitions << tpartition_tmp
|
5167
|
+
end
|
5168
|
+
end
|
5169
|
+
unless params['Properties'].nil?
|
5170
|
+
@Properties = []
|
5171
|
+
params['Properties'].each do |i|
|
5172
|
+
property_tmp = Property.new
|
5173
|
+
property_tmp.deserialize(i)
|
5174
|
+
@Properties << property_tmp
|
5175
|
+
end
|
5176
|
+
end
|
5136
5177
|
end
|
5137
5178
|
end
|
5138
5179
|
|
5139
5180
|
# GenerateCreateMangedTableSql返回参数结构体
|
5140
5181
|
class GenerateCreateMangedTableSqlResponse < TencentCloud::Common::AbstractModel
|
5182
|
+
# @param Execution: 创建托管存储内表sql语句描述
|
5183
|
+
# @type Execution: :class:`Tencentcloud::Dlc.v20210125.models.Execution`
|
5141
5184
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
5142
5185
|
# @type RequestId: String
|
5143
5186
|
|
5144
|
-
attr_accessor :RequestId
|
5187
|
+
attr_accessor :Execution, :RequestId
|
5145
5188
|
|
5146
|
-
def initialize(requestid=nil)
|
5189
|
+
def initialize(execution=nil, requestid=nil)
|
5190
|
+
@Execution = execution
|
5147
5191
|
@RequestId = requestid
|
5148
5192
|
end
|
5149
5193
|
|
5150
5194
|
def deserialize(params)
|
5195
|
+
unless params['Execution'].nil?
|
5196
|
+
@Execution = Execution.new
|
5197
|
+
@Execution.deserialize(params['Execution'])
|
5198
|
+
end
|
5151
5199
|
@RequestId = params['RequestId']
|
5152
5200
|
end
|
5153
5201
|
end
|
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.507
|
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-02-
|
11
|
+
date: 2023-02-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|