tencentcloud-sdk-nodejs-dlc 4.0.706 → 4.0.708
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/CHANGELOG.md +482 -0
- package/SERVICE_CHANGELOG.md +615 -32
- package/package.json +1 -1
- package/products.md +29 -29
- package/src/services/dlc/v20210125/dlc_models.ts +53 -44
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +53 -44
|
@@ -1992,7 +1992,7 @@ export interface CreateDatabaseResponse {
|
|
|
1992
1992
|
/**
|
|
1993
1993
|
* 生成的建库执行语句对象。
|
|
1994
1994
|
*/
|
|
1995
|
-
Execution
|
|
1995
|
+
Execution?: Execution;
|
|
1996
1996
|
/**
|
|
1997
1997
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1998
1998
|
*/
|
|
@@ -2133,11 +2133,11 @@ export interface CheckDataEngineImageCanBeUpgradeResponse {
|
|
|
2133
2133
|
/**
|
|
2134
2134
|
* 当前大版本下,可升级的集群镜像小版本id
|
|
2135
2135
|
*/
|
|
2136
|
-
ChildImageVersionId
|
|
2136
|
+
ChildImageVersionId?: string;
|
|
2137
2137
|
/**
|
|
2138
2138
|
* 是否能够升级
|
|
2139
2139
|
*/
|
|
2140
|
-
IsUpgrade
|
|
2140
|
+
IsUpgrade?: boolean;
|
|
2141
2141
|
/**
|
|
2142
2142
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2143
2143
|
*/
|
|
@@ -2382,12 +2382,12 @@ export interface TextFile {
|
|
|
2382
2382
|
/**
|
|
2383
2383
|
* 文本类型,本参数取值为TextFile。
|
|
2384
2384
|
*/
|
|
2385
|
-
Format
|
|
2385
|
+
Format?: string;
|
|
2386
2386
|
/**
|
|
2387
2387
|
* 处理文本用的正则表达式。
|
|
2388
2388
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2389
2389
|
*/
|
|
2390
|
-
Regex
|
|
2390
|
+
Regex?: string;
|
|
2391
2391
|
}
|
|
2392
2392
|
/**
|
|
2393
2393
|
* DescribeDataEngine返回参数结构体
|
|
@@ -2817,30 +2817,30 @@ export interface Partition {
|
|
|
2817
2817
|
/**
|
|
2818
2818
|
* 分区列名。
|
|
2819
2819
|
*/
|
|
2820
|
-
Name
|
|
2820
|
+
Name?: string;
|
|
2821
2821
|
/**
|
|
2822
2822
|
* 分区类型。
|
|
2823
2823
|
*/
|
|
2824
|
-
Type
|
|
2824
|
+
Type?: string;
|
|
2825
2825
|
/**
|
|
2826
2826
|
* 对分区的描述。
|
|
2827
2827
|
*/
|
|
2828
|
-
Comment
|
|
2828
|
+
Comment?: string;
|
|
2829
2829
|
/**
|
|
2830
2830
|
* 隐式分区转换策略
|
|
2831
2831
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2832
2832
|
*/
|
|
2833
|
-
Transform
|
|
2833
|
+
Transform?: string;
|
|
2834
2834
|
/**
|
|
2835
2835
|
* 转换策略参数
|
|
2836
2836
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2837
2837
|
*/
|
|
2838
|
-
TransformArgs
|
|
2838
|
+
TransformArgs?: Array<string>;
|
|
2839
2839
|
/**
|
|
2840
2840
|
* 创建时间
|
|
2841
2841
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2842
2842
|
*/
|
|
2843
|
-
CreateTime
|
|
2843
|
+
CreateTime?: number;
|
|
2844
2844
|
}
|
|
2845
2845
|
/**
|
|
2846
2846
|
* QueryResult请求参数结构体
|
|
@@ -2989,6 +2989,10 @@ export interface CreateDataEngineRequest {
|
|
|
2989
2989
|
* spark作业集群session资源配置模板
|
|
2990
2990
|
*/
|
|
2991
2991
|
SessionResourceTemplate?: SessionResourceTemplate;
|
|
2992
|
+
/**
|
|
2993
|
+
* 自动授权
|
|
2994
|
+
*/
|
|
2995
|
+
AutoAuthorization?: boolean;
|
|
2992
2996
|
}
|
|
2993
2997
|
/**
|
|
2994
2998
|
* ModifySparkAppBatch请求参数结构体
|
|
@@ -4909,7 +4913,7 @@ export interface CreateTableResponse {
|
|
|
4909
4913
|
/**
|
|
4910
4914
|
* 生成的建表执行语句对象。
|
|
4911
4915
|
*/
|
|
4912
|
-
Execution
|
|
4916
|
+
Execution?: Execution;
|
|
4913
4917
|
/**
|
|
4914
4918
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4915
4919
|
*/
|
|
@@ -5173,32 +5177,32 @@ export interface DataFormat {
|
|
|
5173
5177
|
* 文本格式,TextFile。
|
|
5174
5178
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5175
5179
|
*/
|
|
5176
|
-
TextFile
|
|
5180
|
+
TextFile?: TextFile;
|
|
5177
5181
|
/**
|
|
5178
5182
|
* 文本格式,CSV。
|
|
5179
5183
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5180
5184
|
*/
|
|
5181
|
-
CSV
|
|
5185
|
+
CSV?: CSV;
|
|
5182
5186
|
/**
|
|
5183
5187
|
* 文本格式,Json。
|
|
5184
5188
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5185
5189
|
*/
|
|
5186
|
-
Json
|
|
5190
|
+
Json?: Other;
|
|
5187
5191
|
/**
|
|
5188
5192
|
* Parquet格式
|
|
5189
5193
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5190
5194
|
*/
|
|
5191
|
-
Parquet
|
|
5195
|
+
Parquet?: Other;
|
|
5192
5196
|
/**
|
|
5193
5197
|
* ORC格式
|
|
5194
5198
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5195
5199
|
*/
|
|
5196
|
-
ORC
|
|
5200
|
+
ORC?: Other;
|
|
5197
5201
|
/**
|
|
5198
5202
|
* AVRO格式
|
|
5199
5203
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5200
5204
|
*/
|
|
5201
|
-
AVRO
|
|
5205
|
+
AVRO?: Other;
|
|
5202
5206
|
}
|
|
5203
5207
|
/**
|
|
5204
5208
|
* DescribeNotebookSessionLog返回参数结构体
|
|
@@ -5478,7 +5482,7 @@ export interface CreateWorkGroupResponse {
|
|
|
5478
5482
|
/**
|
|
5479
5483
|
* 工作组Id,全局唯一
|
|
5480
5484
|
*/
|
|
5481
|
-
WorkGroupId
|
|
5485
|
+
WorkGroupId?: number;
|
|
5482
5486
|
/**
|
|
5483
5487
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5484
5488
|
*/
|
|
@@ -5526,15 +5530,15 @@ export interface CheckDataEngineImageCanBeRollbackResponse {
|
|
|
5526
5530
|
/**
|
|
5527
5531
|
* 回滚后日志记录id
|
|
5528
5532
|
*/
|
|
5529
|
-
ToRecordId
|
|
5533
|
+
ToRecordId?: string;
|
|
5530
5534
|
/**
|
|
5531
5535
|
* 回滚前日志记录id
|
|
5532
5536
|
*/
|
|
5533
|
-
FromRecordId
|
|
5537
|
+
FromRecordId?: string;
|
|
5534
5538
|
/**
|
|
5535
5539
|
* 是否能够回滚
|
|
5536
5540
|
*/
|
|
5537
|
-
IsRollback
|
|
5541
|
+
IsRollback?: boolean;
|
|
5538
5542
|
/**
|
|
5539
5543
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5540
5544
|
*/
|
|
@@ -6137,7 +6141,7 @@ export interface Other {
|
|
|
6137
6141
|
/**
|
|
6138
6142
|
* 枚举类型,默认值为Json,可选值为[Json, Parquet, ORC, AVRD]之一。
|
|
6139
6143
|
*/
|
|
6140
|
-
Format
|
|
6144
|
+
Format?: string;
|
|
6141
6145
|
}
|
|
6142
6146
|
/**
|
|
6143
6147
|
* DropDMSDatabase返回参数结构体
|
|
@@ -6328,7 +6332,7 @@ export interface DescribeTableResponse {
|
|
|
6328
6332
|
/**
|
|
6329
6333
|
* 数据表对象
|
|
6330
6334
|
*/
|
|
6331
|
-
Table
|
|
6335
|
+
Table?: TableResponseInfo;
|
|
6332
6336
|
/**
|
|
6333
6337
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6334
6338
|
*/
|
|
@@ -6381,52 +6385,52 @@ export interface TableResponseInfo {
|
|
|
6381
6385
|
/**
|
|
6382
6386
|
* 数据表基本信息。
|
|
6383
6387
|
*/
|
|
6384
|
-
TableBaseInfo
|
|
6388
|
+
TableBaseInfo?: TableBaseInfo;
|
|
6385
6389
|
/**
|
|
6386
6390
|
* 数据表列信息。
|
|
6387
6391
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6388
6392
|
*/
|
|
6389
|
-
Columns
|
|
6393
|
+
Columns?: Array<Column>;
|
|
6390
6394
|
/**
|
|
6391
6395
|
* 数据表分块信息。
|
|
6392
6396
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6393
6397
|
*/
|
|
6394
|
-
Partitions
|
|
6398
|
+
Partitions?: Array<Partition>;
|
|
6395
6399
|
/**
|
|
6396
6400
|
* 数据存储路径。
|
|
6397
6401
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6398
6402
|
*/
|
|
6399
|
-
Location
|
|
6403
|
+
Location?: string;
|
|
6400
6404
|
/**
|
|
6401
6405
|
* 数据表属性信息。
|
|
6402
6406
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6403
6407
|
*/
|
|
6404
|
-
Properties
|
|
6408
|
+
Properties?: Array<Property>;
|
|
6405
6409
|
/**
|
|
6406
6410
|
* 数据表更新时间, 单位: ms。
|
|
6407
6411
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6408
6412
|
*/
|
|
6409
|
-
ModifiedTime
|
|
6413
|
+
ModifiedTime?: string;
|
|
6410
6414
|
/**
|
|
6411
6415
|
* 数据表创建时间,单位: ms。
|
|
6412
6416
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6413
6417
|
*/
|
|
6414
|
-
CreateTime
|
|
6418
|
+
CreateTime?: string;
|
|
6415
6419
|
/**
|
|
6416
6420
|
* 数据格式。
|
|
6417
6421
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6418
6422
|
*/
|
|
6419
|
-
InputFormat
|
|
6423
|
+
InputFormat?: string;
|
|
6420
6424
|
/**
|
|
6421
6425
|
* 数据表存储大小(单位:Byte)
|
|
6422
6426
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6423
6427
|
*/
|
|
6424
|
-
StorageSize
|
|
6428
|
+
StorageSize?: number;
|
|
6425
6429
|
/**
|
|
6426
6430
|
* 数据表行数
|
|
6427
6431
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6428
6432
|
*/
|
|
6429
|
-
RecordCount
|
|
6433
|
+
RecordCount?: number;
|
|
6430
6434
|
/**
|
|
6431
6435
|
* xxxx
|
|
6432
6436
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -6715,11 +6719,11 @@ export interface DescribeViewsResponse {
|
|
|
6715
6719
|
/**
|
|
6716
6720
|
* 视图对象列表。
|
|
6717
6721
|
*/
|
|
6718
|
-
ViewList
|
|
6722
|
+
ViewList?: Array<ViewResponseInfo>;
|
|
6719
6723
|
/**
|
|
6720
6724
|
* 实例总数。
|
|
6721
6725
|
*/
|
|
6722
|
-
TotalCount
|
|
6726
|
+
TotalCount?: number;
|
|
6723
6727
|
/**
|
|
6724
6728
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6725
6729
|
*/
|
|
@@ -6928,7 +6932,7 @@ export interface DescribeDataEnginesRequest {
|
|
|
6928
6932
|
*/
|
|
6929
6933
|
Offset?: number;
|
|
6930
6934
|
/**
|
|
6931
|
-
* 过滤类型,支持如下的过滤类型,传参Name应为以下其中一个, data-engine-name - String(数据引擎名称):engine-type - String(引擎类型:spark:spark 引擎,presto:presto引擎),state - String (数据引擎状态 -2已删除 -1失败 0初始化中 1挂起 2运行中 3准备删除 4删除中) , mode - String(计费模式 0共享模式 1按量计费 2包年包月) , create-time - String(创建时间,10位时间戳) message - String (描述信息),cluster-type - String (集群资源类型 spark_private/presto_private/presto_cu/spark_cu),engine-id - String(数据引擎ID),key-word - String(数据引擎名称或集群资源类型或描述信息模糊搜索),engine-exec-type - String(引擎执行任务类型,SQL/BATCH)
|
|
6935
|
+
* 过滤类型,支持如下的过滤类型,传参Name应为以下其中一个, data-engine-name - String(数据引擎名称):engine-type - String(引擎类型:spark:spark 引擎,presto:presto引擎),state - String (数据引擎状态 -2已删除 -1失败 0初始化中 1挂起 2运行中 3准备删除 4删除中) , mode - String(计费模式 0共享模式 1按量计费 2包年包月) , create-time - String(创建时间,10位时间戳) message - String (描述信息),cluster-type - String (集群资源类型 spark_private/presto_private/presto_cu/spark_cu/kyuubi_cu),engine-id - String(数据引擎ID),key-word - String(数据引擎名称或集群资源类型或描述信息模糊搜索),engine-exec-type - String(引擎执行任务类型,SQL/BATCH),engine-network-id - String(引擎网络Id)
|
|
6932
6936
|
*/
|
|
6933
6937
|
Filters?: Array<Filter>;
|
|
6934
6938
|
/**
|
|
@@ -6960,7 +6964,7 @@ export interface DescribeDataEnginesRequest {
|
|
|
6960
6964
|
*/
|
|
6961
6965
|
EngineExecType?: string;
|
|
6962
6966
|
/**
|
|
6963
|
-
* 引擎类型,有效值:spark/presto
|
|
6967
|
+
* 引擎类型,有效值:spark/presto/kyuubi,为空时默认获取非kyuubi引擎(网关引擎)
|
|
6964
6968
|
*/
|
|
6965
6969
|
EngineType?: string;
|
|
6966
6970
|
/**
|
|
@@ -7253,6 +7257,11 @@ export interface DataEngineInfo {
|
|
|
7253
7257
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
7254
7258
|
*/
|
|
7255
7259
|
SessionResourceTemplate?: SessionResourceTemplate;
|
|
7260
|
+
/**
|
|
7261
|
+
* 自动授权开关
|
|
7262
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7263
|
+
*/
|
|
7264
|
+
AutoAuthorization?: boolean;
|
|
7256
7265
|
}
|
|
7257
7266
|
/**
|
|
7258
7267
|
* SuspendResumeDataEngine请求参数结构体
|
|
@@ -7675,7 +7684,7 @@ export interface DatabaseResponseInfo {
|
|
|
7675
7684
|
/**
|
|
7676
7685
|
* 数据库名称。
|
|
7677
7686
|
*/
|
|
7678
|
-
DatabaseName
|
|
7687
|
+
DatabaseName?: string;
|
|
7679
7688
|
/**
|
|
7680
7689
|
* 数据库描述信息,长度 0~256。
|
|
7681
7690
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -7700,27 +7709,27 @@ export interface DatabaseResponseInfo {
|
|
|
7700
7709
|
* cos存储路径
|
|
7701
7710
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
7702
7711
|
*/
|
|
7703
|
-
Location
|
|
7712
|
+
Location?: string;
|
|
7704
7713
|
/**
|
|
7705
7714
|
* 建库用户昵称
|
|
7706
7715
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
7707
7716
|
*/
|
|
7708
|
-
UserAlias
|
|
7717
|
+
UserAlias?: string;
|
|
7709
7718
|
/**
|
|
7710
7719
|
* 建库用户ID
|
|
7711
7720
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
7712
7721
|
*/
|
|
7713
|
-
UserSubUin
|
|
7722
|
+
UserSubUin?: string;
|
|
7714
7723
|
/**
|
|
7715
7724
|
* 数据治理配置项
|
|
7716
7725
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
7717
7726
|
*/
|
|
7718
|
-
GovernPolicy
|
|
7727
|
+
GovernPolicy?: DataGovernPolicy;
|
|
7719
7728
|
/**
|
|
7720
7729
|
* 数据库ID(无效字段)
|
|
7721
7730
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
7722
7731
|
*/
|
|
7723
|
-
DatabaseId
|
|
7732
|
+
DatabaseId?: string;
|
|
7724
7733
|
}
|
|
7725
7734
|
/**
|
|
7726
7735
|
* 迁移列对象
|