tencentcloud-sdk-dlc 3.0.1014 → 3.0.1015
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/models.rb +6 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4698de6bd836600ac067042e53786523185f24ca
|
4
|
+
data.tar.gz: 0ddd05fe1a45661e9f272843fb4382759a478377
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5ff608979209734be0b31fdc0d7c4667ae45ca073902fdf257ae6d3211c2af2f2deb6f3d6be418cd2cdc014a8669040709886de027c1289f6d6d10311eaad81d
|
7
|
+
data.tar.gz: f23923966b07eeef13692d7cd1fef4845cc58e217a1d0e10327710de04c62f116266f095bae388dfa198126a3c466edece5665edf9cf60c3aeaa5b26355793c0
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1015
|
data/lib/v20210125/models.rb
CHANGED
@@ -10740,10 +10740,12 @@ module TencentCloud
|
|
10740
10740
|
# @param Id: 策略ID
|
10741
10741
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10742
10742
|
# @type Id: Integer
|
10743
|
+
# @param EngineGeneration: 引擎类型
|
10744
|
+
# @type EngineGeneration: String
|
10743
10745
|
|
10744
|
-
attr_accessor :Database, :Catalog, :Table, :Operation, :PolicyType, :Function, :View, :Column, :DataEngine, :ReAuth, :Source, :Mode, :Operator, :CreateTime, :SourceId, :SourceName, :Id
|
10746
|
+
attr_accessor :Database, :Catalog, :Table, :Operation, :PolicyType, :Function, :View, :Column, :DataEngine, :ReAuth, :Source, :Mode, :Operator, :CreateTime, :SourceId, :SourceName, :Id, :EngineGeneration
|
10745
10747
|
|
10746
|
-
def initialize(database=nil, catalog=nil, table=nil, operation=nil, policytype=nil, function=nil, view=nil, column=nil, dataengine=nil, reauth=nil, source=nil, mode=nil, operator=nil, createtime=nil, sourceid=nil, sourcename=nil, id=nil)
|
10748
|
+
def initialize(database=nil, catalog=nil, table=nil, operation=nil, policytype=nil, function=nil, view=nil, column=nil, dataengine=nil, reauth=nil, source=nil, mode=nil, operator=nil, createtime=nil, sourceid=nil, sourcename=nil, id=nil, enginegeneration=nil)
|
10747
10749
|
@Database = database
|
10748
10750
|
@Catalog = catalog
|
10749
10751
|
@Table = table
|
@@ -10761,6 +10763,7 @@ module TencentCloud
|
|
10761
10763
|
@SourceId = sourceid
|
10762
10764
|
@SourceName = sourcename
|
10763
10765
|
@Id = id
|
10766
|
+
@EngineGeneration = enginegeneration
|
10764
10767
|
end
|
10765
10768
|
|
10766
10769
|
def deserialize(params)
|
@@ -10781,6 +10784,7 @@ module TencentCloud
|
|
10781
10784
|
@SourceId = params['SourceId']
|
10782
10785
|
@SourceName = params['SourceName']
|
10783
10786
|
@Id = params['Id']
|
10787
|
+
@EngineGeneration = params['EngineGeneration']
|
10784
10788
|
end
|
10785
10789
|
end
|
10786
10790
|
|