tencentcloud-sdk-dlc 3.0.885 → 3.0.886
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 +60 -7
- 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: 44f6b792dd3bbb8497ec88bb58168cb961bac8e2
|
4
|
+
data.tar.gz: c8abcf20b48d1a07b7c9076668240ebb38d8e46c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b1f39d5c95e2fccb8f57ea7430454170473f6baf65746657285985457c7bd5203b91c4b58a84e39de11ae58039d9fcd09c0658104d8906953963bc2137557f8
|
7
|
+
data.tar.gz: dafb304c62a78e2a67601de317be0a89f1ac7851da12d119cb6b845130d791def2381c6f40db18ffd3c7d5a6acd429b7facefd988fed8632a12b275f62aac2b6
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.886
|
data/lib/v20210125/models.rb
CHANGED
@@ -8969,14 +8969,30 @@ module TencentCloud
|
|
8969
8969
|
# @type SpaceUsedSize: Float
|
8970
8970
|
# @param CreateTimeStamp: 创建时候的时间戳
|
8971
8971
|
# @type CreateTimeStamp: Integer
|
8972
|
+
# @param DefaultBucket: 是否是用户默认桶,0:默认桶,1:非默认桶
|
8973
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8974
|
+
# @type DefaultBucket: Integer
|
8975
|
+
# @param ShortName: 托管存储short name
|
8976
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8977
|
+
# @type ShortName: String
|
8978
|
+
# @param Description: 桶描述信息
|
8979
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8980
|
+
# @type Description: String
|
8981
|
+
# @param Status: 托管桶状态,当前取值为:creating、bind、readOnly、isolate
|
8982
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8983
|
+
# @type Status: String
|
8972
8984
|
|
8973
|
-
attr_accessor :Name, :Type, :SpaceUsedSize, :CreateTimeStamp
|
8985
|
+
attr_accessor :Name, :Type, :SpaceUsedSize, :CreateTimeStamp, :DefaultBucket, :ShortName, :Description, :Status
|
8974
8986
|
|
8975
|
-
def initialize(name=nil, type=nil, spaceusedsize=nil, createtimestamp=nil)
|
8987
|
+
def initialize(name=nil, type=nil, spaceusedsize=nil, createtimestamp=nil, defaultbucket=nil, shortname=nil, description=nil, status=nil)
|
8976
8988
|
@Name = name
|
8977
8989
|
@Type = type
|
8978
8990
|
@SpaceUsedSize = spaceusedsize
|
8979
8991
|
@CreateTimeStamp = createtimestamp
|
8992
|
+
@DefaultBucket = defaultbucket
|
8993
|
+
@ShortName = shortname
|
8994
|
+
@Description = description
|
8995
|
+
@Status = status
|
8980
8996
|
end
|
8981
8997
|
|
8982
8998
|
def deserialize(params)
|
@@ -8984,6 +9000,10 @@ module TencentCloud
|
|
8984
9000
|
@Type = params['Type']
|
8985
9001
|
@SpaceUsedSize = params['SpaceUsedSize']
|
8986
9002
|
@CreateTimeStamp = params['CreateTimeStamp']
|
9003
|
+
@DefaultBucket = params['DefaultBucket']
|
9004
|
+
@ShortName = params['ShortName']
|
9005
|
+
@Description = params['Description']
|
9006
|
+
@Status = params['Status']
|
8987
9007
|
end
|
8988
9008
|
end
|
8989
9009
|
|
@@ -10979,19 +10999,29 @@ module TencentCloud
|
|
10979
10999
|
# @param DropTable: 是否删表
|
10980
11000
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10981
11001
|
# @type DropTable: Boolean
|
11002
|
+
# @param ExpiredField: 过期字段
|
11003
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11004
|
+
# @type ExpiredField: String
|
11005
|
+
# @param ExpiredFieldFormat: 过期字段格式
|
11006
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11007
|
+
# @type ExpiredFieldFormat: String
|
10982
11008
|
|
10983
|
-
attr_accessor :LifecycleEnable, :Expiration, :DropTable
|
11009
|
+
attr_accessor :LifecycleEnable, :Expiration, :DropTable, :ExpiredField, :ExpiredFieldFormat
|
10984
11010
|
|
10985
|
-
def initialize(lifecycleenable=nil, expiration=nil, droptable=nil)
|
11011
|
+
def initialize(lifecycleenable=nil, expiration=nil, droptable=nil, expiredfield=nil, expiredfieldformat=nil)
|
10986
11012
|
@LifecycleEnable = lifecycleenable
|
10987
11013
|
@Expiration = expiration
|
10988
11014
|
@DropTable = droptable
|
11015
|
+
@ExpiredField = expiredfield
|
11016
|
+
@ExpiredFieldFormat = expiredfieldformat
|
10989
11017
|
end
|
10990
11018
|
|
10991
11019
|
def deserialize(params)
|
10992
11020
|
@LifecycleEnable = params['LifecycleEnable']
|
10993
11021
|
@Expiration = params['Expiration']
|
10994
11022
|
@DropTable = params['DropTable']
|
11023
|
+
@ExpiredField = params['ExpiredField']
|
11024
|
+
@ExpiredFieldFormat = params['ExpiredFieldFormat']
|
10995
11025
|
end
|
10996
11026
|
end
|
10997
11027
|
|
@@ -11050,12 +11080,18 @@ module TencentCloud
|
|
11050
11080
|
|
11051
11081
|
# SmartOptimizerWrittenPolicy
|
11052
11082
|
class SmartOptimizerWrittenPolicy < TencentCloud::Common::AbstractModel
|
11083
|
+
# @param WrittenEnable: none/enable/disable/default
|
11084
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11085
|
+
# @type WrittenEnable: String
|
11053
11086
|
|
11087
|
+
attr_accessor :WrittenEnable
|
11054
11088
|
|
11055
|
-
def initialize()
|
11089
|
+
def initialize(writtenenable=nil)
|
11090
|
+
@WrittenEnable = writtenenable
|
11056
11091
|
end
|
11057
11092
|
|
11058
11093
|
def deserialize(params)
|
11094
|
+
@WrittenEnable = params['WrittenEnable']
|
11059
11095
|
end
|
11060
11096
|
end
|
11061
11097
|
|
@@ -11672,24 +11708,37 @@ module TencentCloud
|
|
11672
11708
|
# 表字段描述信息
|
11673
11709
|
class TColumn < TencentCloud::Common::AbstractModel
|
11674
11710
|
# @param Name: 字段名称
|
11711
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11675
11712
|
# @type Name: String
|
11676
11713
|
# @param Type: 字段类型
|
11714
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11677
11715
|
# @type Type: String
|
11678
11716
|
# @param Comment: 字段描述
|
11717
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11679
11718
|
# @type Comment: String
|
11680
11719
|
# @param Default: 字段默认值
|
11720
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11681
11721
|
# @type Default: String
|
11682
11722
|
# @param NotNull: 字段是否是非空
|
11723
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11683
11724
|
# @type NotNull: Boolean
|
11684
11725
|
# @param Precision: 表示整个 numeric 的长度,取值1-38
|
11726
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11685
11727
|
# @type Precision: Integer
|
11686
11728
|
# @param Scale: 表示小数部分的长度
|
11687
11729
|
# Scale小于Precision
|
11730
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11688
11731
|
# @type Scale: Integer
|
11732
|
+
# @param Position: 字段位置,小的在前
|
11733
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11734
|
+
# @type Position: Integer
|
11735
|
+
# @param IsPartition: 是否为分区字段
|
11736
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11737
|
+
# @type IsPartition: Boolean
|
11689
11738
|
|
11690
|
-
attr_accessor :Name, :Type, :Comment, :Default, :NotNull, :Precision, :Scale
|
11739
|
+
attr_accessor :Name, :Type, :Comment, :Default, :NotNull, :Precision, :Scale, :Position, :IsPartition
|
11691
11740
|
|
11692
|
-
def initialize(name=nil, type=nil, comment=nil, default=nil, notnull=nil, precision=nil, scale=nil)
|
11741
|
+
def initialize(name=nil, type=nil, comment=nil, default=nil, notnull=nil, precision=nil, scale=nil, position=nil, ispartition=nil)
|
11693
11742
|
@Name = name
|
11694
11743
|
@Type = type
|
11695
11744
|
@Comment = comment
|
@@ -11697,6 +11746,8 @@ module TencentCloud
|
|
11697
11746
|
@NotNull = notnull
|
11698
11747
|
@Precision = precision
|
11699
11748
|
@Scale = scale
|
11749
|
+
@Position = position
|
11750
|
+
@IsPartition = ispartition
|
11700
11751
|
end
|
11701
11752
|
|
11702
11753
|
def deserialize(params)
|
@@ -11707,6 +11758,8 @@ module TencentCloud
|
|
11707
11758
|
@NotNull = params['NotNull']
|
11708
11759
|
@Precision = params['Precision']
|
11709
11760
|
@Scale = params['Scale']
|
11761
|
+
@Position = params['Position']
|
11762
|
+
@IsPartition = params['IsPartition']
|
11710
11763
|
end
|
11711
11764
|
end
|
11712
11765
|
|