tencentcloud-sdk-nodejs-dlc 4.0.463 → 4.0.469

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.
@@ -1,3 +1,41 @@
1
+ /**
2
+ * DescribeResultDownload返回参数结构体
3
+ */
4
+ export interface DescribeResultDownloadResponse {
5
+ /**
6
+ * 下载文件路径
7
+ 注意:此字段可能返回 null,表示取不到有效值。
8
+ */
9
+ Path: string;
10
+ /**
11
+ * 任务状态 init | queue | format | compress | success| timeout | error
12
+ */
13
+ Status: string;
14
+ /**
15
+ * 任务异常原因
16
+ 注意:此字段可能返回 null,表示取不到有效值。
17
+ */
18
+ Reason: string;
19
+ /**
20
+ * 临时AK
21
+ 注意:此字段可能返回 null,表示取不到有效值。
22
+ */
23
+ SecretId: string;
24
+ /**
25
+ * 临时SK
26
+ 注意:此字段可能返回 null,表示取不到有效值。
27
+ */
28
+ SecretKey: string;
29
+ /**
30
+ * 临时Token
31
+ 注意:此字段可能返回 null,表示取不到有效值。
32
+ */
33
+ Token: string;
34
+ /**
35
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
36
+ */
37
+ RequestId?: string;
38
+ }
1
39
  /**
2
40
  * DescribeTaskResult返回参数结构体
3
41
  */
@@ -110,17 +148,82 @@ export interface ListTaskJobLogDetailResponse {
110
148
  RequestId?: string;
111
149
  }
112
150
  /**
113
- * DescribeSparkAppJob请求参数结构体
151
+ * 元数据基本对象
114
152
  */
115
- export interface DescribeSparkAppJobRequest {
153
+ export interface Asset {
116
154
  /**
117
- * spark作业Id,与JobName同时存在时,JobName无效
155
+ * 主键
156
+ 注意:此字段可能返回 null,表示取不到有效值。
157
+ */
158
+ Id?: number;
159
+ /**
160
+ * 名称
161
+ 注意:此字段可能返回 null,表示取不到有效值。
162
+ */
163
+ Name?: string;
164
+ /**
165
+ * 对象GUID值
166
+ 注意:此字段可能返回 null,表示取不到有效值。
167
+ */
168
+ Guid?: string;
169
+ /**
170
+ * 数据目录
171
+ 注意:此字段可能返回 null,表示取不到有效值。
172
+ */
173
+ Catalog?: string;
174
+ /**
175
+ * 描述信息
118
176
  */
119
- JobId?: string;
177
+ Description?: string;
120
178
  /**
121
- * spark作业名
179
+ * 对象owner
122
180
  */
123
- JobName?: string;
181
+ Owner?: string;
182
+ /**
183
+ * 对象owner账户
184
+ */
185
+ OwnerAccount?: string;
186
+ /**
187
+ * 权限
188
+ */
189
+ PermValues?: Array<KVPair>;
190
+ /**
191
+ * 附加属性
192
+ */
193
+ Params?: Array<KVPair>;
194
+ /**
195
+ * 附加业务属性
196
+ */
197
+ BizParams?: Array<KVPair>;
198
+ /**
199
+ * 数据版本
200
+ */
201
+ DataVersion?: number;
202
+ /**
203
+ * 创建时间
204
+ */
205
+ CreateTime?: string;
206
+ /**
207
+ * 修改时间
208
+ */
209
+ ModifiedTime?: string;
210
+ /**
211
+ * 数据源主键
212
+ */
213
+ DatasourceId?: number;
214
+ }
215
+ /**
216
+ * CreateResultDownload返回参数结构体
217
+ */
218
+ export interface CreateResultDownloadResponse {
219
+ /**
220
+ * 下载任务Id
221
+ */
222
+ DownloadId: string;
223
+ /**
224
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
225
+ */
226
+ RequestId?: string;
124
227
  }
125
228
  /**
126
229
  * CreateDMSDatabase返回参数结构体
@@ -966,69 +1069,17 @@ export interface CheckLockMetaDataRequest {
966
1069
  ElapsedMs?: number;
967
1070
  }
968
1071
  /**
969
- * 元数据基本对象
1072
+ * DescribeSparkAppJob请求参数结构体
970
1073
  */
971
- export interface Asset {
972
- /**
973
- * 主键
974
- 注意:此字段可能返回 null,表示取不到有效值。
975
- */
976
- Id?: number;
977
- /**
978
- * 名称
979
- 注意:此字段可能返回 null,表示取不到有效值。
980
- */
981
- Name?: string;
982
- /**
983
- * 对象GUID值
984
- 注意:此字段可能返回 null,表示取不到有效值。
985
- */
986
- Guid?: string;
987
- /**
988
- * 数据目录
989
- 注意:此字段可能返回 null,表示取不到有效值。
990
- */
991
- Catalog?: string;
992
- /**
993
- * 描述信息
994
- */
995
- Description?: string;
996
- /**
997
- * 对象owner
998
- */
999
- Owner?: string;
1000
- /**
1001
- * 对象owner账户
1002
- */
1003
- OwnerAccount?: string;
1004
- /**
1005
- * 权限
1006
- */
1007
- PermValues?: Array<KVPair>;
1008
- /**
1009
- * 附加属性
1010
- */
1011
- Params?: Array<KVPair>;
1012
- /**
1013
- * 附加业务属性
1014
- */
1015
- BizParams?: Array<KVPair>;
1016
- /**
1017
- * 数据版本
1018
- */
1019
- DataVersion?: number;
1020
- /**
1021
- * 创建时间
1022
- */
1023
- CreateTime?: string;
1074
+ export interface DescribeSparkAppJobRequest {
1024
1075
  /**
1025
- * 修改时间
1076
+ * spark作业Id,与JobName同时存在时,JobName无效
1026
1077
  */
1027
- ModifiedTime?: string;
1078
+ JobId?: string;
1028
1079
  /**
1029
- * 数据源主键
1080
+ * spark作业名
1030
1081
  */
1031
- DatasourceId?: number;
1082
+ JobName?: string;
1032
1083
  }
1033
1084
  /**
1034
1085
  * CreateDatabase返回参数结构体
@@ -2599,22 +2650,39 @@ export interface DescribeUsersResponse {
2599
2650
  RequestId?: string;
2600
2651
  }
2601
2652
  /**
2602
- * DescribeScripts返回参数结构体
2653
+ * 数据表数据格式。
2603
2654
  */
2604
- export interface DescribeScriptsResponse {
2655
+ export interface DataFormat {
2605
2656
  /**
2606
- * Script列表
2657
+ * 文本格式,TextFile。
2607
2658
  注意:此字段可能返回 null,表示取不到有效值。
2608
2659
  */
2609
- Scripts: Array<Script>;
2660
+ TextFile: TextFile;
2610
2661
  /**
2611
- * 实例总数
2612
- */
2613
- TotalCount: number;
2662
+ * 文本格式,CSV。
2663
+ 注意:此字段可能返回 null,表示取不到有效值。
2664
+ */
2665
+ CSV: CSV;
2614
2666
  /**
2615
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId
2616
- */
2617
- RequestId?: string;
2667
+ * 文本格式,Json
2668
+ 注意:此字段可能返回 null,表示取不到有效值。
2669
+ */
2670
+ Json: Other;
2671
+ /**
2672
+ * Parquet格式
2673
+ 注意:此字段可能返回 null,表示取不到有效值。
2674
+ */
2675
+ Parquet: Other;
2676
+ /**
2677
+ * ORC格式
2678
+ 注意:此字段可能返回 null,表示取不到有效值。
2679
+ */
2680
+ ORC: Other;
2681
+ /**
2682
+ * AVRO格式
2683
+ 注意:此字段可能返回 null,表示取不到有效值。
2684
+ */
2685
+ AVRO: Other;
2618
2686
  }
2619
2687
  /**
2620
2688
  * 查询视图信息对象
@@ -2915,6 +2983,15 @@ export interface DMSTableInfo {
2915
2983
  */
2916
2984
  Asset: Asset;
2917
2985
  }
2986
+ /**
2987
+ * AttachUserPolicy返回参数结构体
2988
+ */
2989
+ export interface AttachUserPolicyResponse {
2990
+ /**
2991
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2992
+ */
2993
+ RequestId?: string;
2994
+ }
2918
2995
  /**
2919
2996
  * 迁移元数据分区对象
2920
2997
  */
@@ -3825,13 +3902,21 @@ export interface Property {
3825
3902
  Value: string;
3826
3903
  }
3827
3904
  /**
3828
- * AttachUserPolicy返回参数结构体
3905
+ * CreateResultDownload请求参数结构体
3829
3906
  */
3830
- export interface AttachUserPolicyResponse {
3907
+ export interface CreateResultDownloadRequest {
3831
3908
  /**
3832
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3909
+ * 查询结果任务Id
3833
3910
  */
3834
- RequestId?: string;
3911
+ TaskId: string;
3912
+ /**
3913
+ * 下载格式
3914
+ */
3915
+ Format: string;
3916
+ /**
3917
+ * 是否重新生成下载文件,仅当之前任务为 Timout | Error 时有效
3918
+ */
3919
+ Force?: boolean;
3835
3920
  }
3836
3921
  /**
3837
3922
  * CreateDMSDatabase请求参数结构体
@@ -3918,39 +4003,22 @@ export interface DescribeViewsResponse {
3918
4003
  RequestId?: string;
3919
4004
  }
3920
4005
  /**
3921
- * 数据表数据格式。
4006
+ * DescribeScripts返回参数结构体
3922
4007
  */
3923
- export interface DataFormat {
3924
- /**
3925
- * 文本格式,TextFile。
3926
- 注意:此字段可能返回 null,表示取不到有效值。
3927
- */
3928
- TextFile: TextFile;
3929
- /**
3930
- * 文本格式,CSV。
3931
- 注意:此字段可能返回 null,表示取不到有效值。
3932
- */
3933
- CSV: CSV;
3934
- /**
3935
- * 文本格式,Json。
3936
- 注意:此字段可能返回 null,表示取不到有效值。
3937
- */
3938
- Json: Other;
4008
+ export interface DescribeScriptsResponse {
3939
4009
  /**
3940
- * Parquet格式
4010
+ * Script列表
3941
4011
  注意:此字段可能返回 null,表示取不到有效值。
3942
4012
  */
3943
- Parquet: Other;
4013
+ Scripts: Array<Script>;
3944
4014
  /**
3945
- * ORC格式
3946
- 注意:此字段可能返回 null,表示取不到有效值。
3947
- */
3948
- ORC: Other;
4015
+ * 实例总数
4016
+ */
4017
+ TotalCount: number;
3949
4018
  /**
3950
- * AVRO格式
3951
- 注意:此字段可能返回 null,表示取不到有效值。
3952
- */
3953
- AVRO: Other;
4019
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4020
+ */
4021
+ RequestId?: string;
3954
4022
  }
3955
4023
  /**
3956
4024
  * 数据库对象
@@ -4036,3 +4104,12 @@ export interface DMSColumn {
4036
4104
  */
4037
4105
  IsPartition?: boolean;
4038
4106
  }
4107
+ /**
4108
+ * DescribeResultDownload请求参数结构体
4109
+ */
4110
+ export interface DescribeResultDownloadRequest {
4111
+ /**
4112
+ * 查询任务Id
4113
+ */
4114
+ DownloadId: string;
4115
+ }