tencentcloud-sdk-nodejs-dlc 4.1.207 → 4.1.209
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.
package/package.json
CHANGED
|
@@ -11751,51 +11751,55 @@ export interface BindWorkGroupsToUserRequest {
|
|
|
11751
11751
|
*/
|
|
11752
11752
|
export interface Column {
|
|
11753
11753
|
/**
|
|
11754
|
-
*
|
|
11754
|
+
* <p>列名称,不区分大小写,最大支持25个字符。</p>
|
|
11755
11755
|
*/
|
|
11756
11756
|
Name: string;
|
|
11757
11757
|
/**
|
|
11758
|
-
* string|tinyint|smallint|int|bigint|boolean|float|double|decimal|timestamp|date|binary|array|map|struct|uniontype
|
|
11758
|
+
* <p>string|tinyint|smallint|int|bigint|boolean|float|double|decimal|timestamp|date|binary|array|map|struct|uniontype</p>
|
|
11759
11759
|
*/
|
|
11760
11760
|
Type: string;
|
|
11761
11761
|
/**
|
|
11762
|
-
*
|
|
11762
|
+
* <p>对该类的注释。</p>
|
|
11763
11763
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11764
11764
|
*/
|
|
11765
11765
|
Comment?: string;
|
|
11766
11766
|
/**
|
|
11767
|
-
*
|
|
11767
|
+
* <p>表示整个 numeric 的长度</p>
|
|
11768
11768
|
*/
|
|
11769
11769
|
Precision?: number;
|
|
11770
11770
|
/**
|
|
11771
|
-
*
|
|
11771
|
+
* <p>表示小数部分的长度</p>
|
|
11772
11772
|
*/
|
|
11773
11773
|
Scale?: number;
|
|
11774
11774
|
/**
|
|
11775
|
-
*
|
|
11775
|
+
* <p>是否为null</p>
|
|
11776
11776
|
*/
|
|
11777
11777
|
Nullable?: string;
|
|
11778
11778
|
/**
|
|
11779
|
-
*
|
|
11779
|
+
* <p>字段位置,小的在前</p>
|
|
11780
11780
|
*/
|
|
11781
11781
|
Position?: number;
|
|
11782
11782
|
/**
|
|
11783
|
-
*
|
|
11783
|
+
* <p>字段创建时间</p><p>参数格式:YYYY-MM-DD hh:mm:ss</p>
|
|
11784
11784
|
*/
|
|
11785
11785
|
CreateTime?: string;
|
|
11786
11786
|
/**
|
|
11787
|
-
*
|
|
11787
|
+
* <p>字段修改时间</p><p>参数格式:YYYY-MM-DD hh:mm:ss</p>
|
|
11788
11788
|
*/
|
|
11789
11789
|
ModifiedTime?: string;
|
|
11790
11790
|
/**
|
|
11791
|
-
*
|
|
11791
|
+
* <p>是否为分区字段</p>
|
|
11792
11792
|
*/
|
|
11793
11793
|
IsPartition?: boolean;
|
|
11794
11794
|
/**
|
|
11795
|
-
*
|
|
11795
|
+
* <p>数据脱敏策略信息</p>
|
|
11796
11796
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11797
11797
|
*/
|
|
11798
11798
|
DataMaskStrategyInfo?: DataMaskStrategyInfo;
|
|
11799
|
+
/**
|
|
11800
|
+
* <p>数据字段说明</p>
|
|
11801
|
+
*/
|
|
11802
|
+
TypeText?: string;
|
|
11799
11803
|
}
|
|
11800
11804
|
/**
|
|
11801
11805
|
* Smart Optimizer高级参数配置数据结构
|