tencentcloud-sdk-nodejs-dlc 4.0.374 → 4.0.377

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.
@@ -140,10 +140,47 @@ export interface CreateStoreLocationResponse {
140
140
  */
141
141
  RequestId?: string;
142
142
  }
143
+ /**
144
+ * ReportHeartbeatMetaData请求参数结构体
145
+ */
146
+ export interface ReportHeartbeatMetaDataRequest {
147
+ /**
148
+ * 数据源名称
149
+ */
150
+ DatasourceConnectionName?: string;
151
+ /**
152
+ * 锁ID
153
+ */
154
+ LockId?: number;
155
+ /**
156
+ * 事务ID
157
+ */
158
+ TxnId?: number;
159
+ }
143
160
  /**
144
161
  * DescribeDMSDatabase返回参数结构体
145
162
  */
146
163
  export interface DescribeDMSDatabaseResponse {
164
+ /**
165
+ * 数据库名称
166
+ 注意:此字段可能返回 null,表示取不到有效值。
167
+ */
168
+ Name: string;
169
+ /**
170
+ * schema名称
171
+ 注意:此字段可能返回 null,表示取不到有效值。
172
+ */
173
+ SchemaName: string;
174
+ /**
175
+ * 存储地址
176
+ 注意:此字段可能返回 null,表示取不到有效值。
177
+ */
178
+ Location: string;
179
+ /**
180
+ * 数据对象
181
+ 注意:此字段可能返回 null,表示取不到有效值。
182
+ */
183
+ Asset: Asset;
147
184
  /**
148
185
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
149
186
  */
@@ -152,7 +189,20 @@ export interface DescribeDMSDatabaseResponse {
152
189
  /**
153
190
  * DropDMSDatabase请求参数结构体
154
191
  */
155
- export declare type DropDMSDatabaseRequest = null;
192
+ export interface DropDMSDatabaseRequest {
193
+ /**
194
+ * 数据库名称
195
+ */
196
+ Name: string;
197
+ /**
198
+ * 是否删除数据
199
+ */
200
+ DeleteData?: boolean;
201
+ /**
202
+ * 是否级联删除
203
+ */
204
+ Cascade?: boolean;
205
+ }
156
206
  /**
157
207
  * CreateScript返回参数结构体
158
208
  */
@@ -872,7 +922,68 @@ export interface CheckLockMetaDataRequest {
872
922
  /**
873
923
  * 元数据基本对象
874
924
  */
875
- export declare type Asset = null;
925
+ export interface Asset {
926
+ /**
927
+ * 主键
928
+ 注意:此字段可能返回 null,表示取不到有效值。
929
+ */
930
+ Id?: number;
931
+ /**
932
+ * 名称
933
+ 注意:此字段可能返回 null,表示取不到有效值。
934
+ */
935
+ Name?: string;
936
+ /**
937
+ * 对象GUID值
938
+ 注意:此字段可能返回 null,表示取不到有效值。
939
+ */
940
+ Guid?: string;
941
+ /**
942
+ * 数据目录
943
+ 注意:此字段可能返回 null,表示取不到有效值。
944
+ */
945
+ Catalog?: string;
946
+ /**
947
+ * 描述信息
948
+ */
949
+ Description?: string;
950
+ /**
951
+ * 对象owner
952
+ */
953
+ Owner?: string;
954
+ /**
955
+ * 对象owner账户
956
+ */
957
+ OwnerAccount?: string;
958
+ /**
959
+ * 权限
960
+ */
961
+ PermValues?: Array<KVPair>;
962
+ /**
963
+ * 附加属性
964
+ */
965
+ Params?: Array<KVPair>;
966
+ /**
967
+ * 附加业务属性
968
+ */
969
+ BizParams?: Array<KVPair>;
970
+ /**
971
+ * 数据版本
972
+ */
973
+ DataVersion?: number;
974
+ /**
975
+ * 创建时间
976
+ */
977
+ CreateTime?: string;
978
+ /**
979
+ * 修改时间
980
+ */
981
+ ModifiedTime?: string;
982
+ /**
983
+ * 数据源主键
984
+ */
985
+ DatasourceId?: number;
986
+ }
876
987
  /**
877
988
  * CreateDatabase返回参数结构体
878
989
  */
@@ -1199,6 +1310,10 @@ export interface DescribeDMSPartitionsRequest {
1199
1310
  * 页面数量
1200
1311
  */
1201
1312
  Limit?: number;
1313
+ /**
1314
+ * 表达式
1315
+ */
1316
+ Expression?: string;
1202
1317
  }
1203
1318
  /**
1204
1319
  * DescribeSparkAppJobs请求参数结构体
@@ -1518,6 +1633,15 @@ export interface CreateExportTaskRequest {
1518
1633
  */
1519
1634
  OutputType?: string;
1520
1635
  }
1636
+ /**
1637
+ * ReportHeartbeatMetaData返回参数结构体
1638
+ */
1639
+ export interface ReportHeartbeatMetaDataResponse {
1640
+ /**
1641
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1642
+ */
1643
+ RequestId?: string;
1644
+ }
1521
1645
  /**
1522
1646
  * CreateDMSTable请求参数结构体
1523
1647
  */
@@ -2189,6 +2313,10 @@ export interface AlterDMSTableRequest {
2189
2313
  * 分区
2190
2314
  */
2191
2315
  Partitions?: Array<DMSPartition>;
2316
+ /**
2317
+ * 当前表名
2318
+ */
2319
+ Name?: string;
2192
2320
  }
2193
2321
  /**
2194
2322
  * CreateImportTask返回参数结构体
@@ -2832,7 +2960,20 @@ export interface UnbindWorkGroupsFromUserRequest {
2832
2960
  /**
2833
2961
  * DescribeDMSDatabase请求参数结构体
2834
2962
  */
2835
- export declare type DescribeDMSDatabaseRequest = null;
2963
+ export interface DescribeDMSDatabaseRequest {
2964
+ /**
2965
+ * 数据库名称
2966
+ */
2967
+ Name?: string;
2968
+ /**
2969
+ * schema名称
2970
+ */
2971
+ SchemaName?: string;
2972
+ /**
2973
+ * 匹配规则
2974
+ */
2975
+ Pattern?: string;
2976
+ }
2836
2977
  /**
2837
2978
  * DescribeTable请求参数结构体
2838
2979
  */
@@ -3494,7 +3635,24 @@ export interface CheckLockMetaDataResponse {
3494
3635
  /**
3495
3636
  * AlterDMSDatabase请求参数结构体
3496
3637
  */
3497
- export declare type AlterDMSDatabaseRequest = null;
3638
+ export interface AlterDMSDatabaseRequest {
3639
+ /**
3640
+ * 当前名称
3641
+ */
3642
+ CurrentName?: string;
3643
+ /**
3644
+ * schema名称
3645
+ */
3646
+ SchemaName?: string;
3647
+ /**
3648
+ * 路径
3649
+ */
3650
+ Location?: string;
3651
+ /**
3652
+ * 基础对象
3653
+ */
3654
+ Asset?: Asset;
3655
+ }
3498
3656
  /**
3499
3657
  * SQL查询任务
3500
3658
  */
@@ -3560,6 +3718,18 @@ export interface AttachUserPolicyResponse {
3560
3718
  * CreateDMSDatabase请求参数结构体
3561
3719
  */
3562
3720
  export interface CreateDMSDatabaseRequest {
3721
+ /**
3722
+ * 基础元数据对象
3723
+ */
3724
+ Asset?: Asset;
3725
+ /**
3726
+ * Schema目录
3727
+ */
3728
+ SchemaName?: string;
3729
+ /**
3730
+ * Db存储路径
3731
+ */
3732
+ Location?: string;
3563
3733
  /**
3564
3734
  * 数据库名称
3565
3735
  */