tencentcloud-sdk-nodejs-wedata 4.0.659 → 4.0.662
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 +796 -0
- package/SERVICE_CHANGELOG.md +738 -288
- package/package.json +1 -1
- package/products.md +38 -38
- package/src/services/wedata/v20210820/wedata_models.ts +142 -16
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +142 -16
|
@@ -2076,23 +2076,23 @@ export interface DescribeInLongTkeClusterListResponse {
|
|
|
2076
2076
|
/**
|
|
2077
2077
|
* TKE集群信息
|
|
2078
2078
|
*/
|
|
2079
|
-
Items
|
|
2079
|
+
Items?: Array<InLongTkeDetail>;
|
|
2080
2080
|
/**
|
|
2081
2081
|
* 页码
|
|
2082
2082
|
*/
|
|
2083
|
-
PageIndex
|
|
2083
|
+
PageIndex?: number;
|
|
2084
2084
|
/**
|
|
2085
2085
|
* 每页记录数
|
|
2086
2086
|
*/
|
|
2087
|
-
PageSize
|
|
2087
|
+
PageSize?: number;
|
|
2088
2088
|
/**
|
|
2089
2089
|
* 总记录数
|
|
2090
2090
|
*/
|
|
2091
|
-
TotalCount
|
|
2091
|
+
TotalCount?: number;
|
|
2092
2092
|
/**
|
|
2093
2093
|
* 总页数
|
|
2094
2094
|
*/
|
|
2095
|
-
TotalPage
|
|
2095
|
+
TotalPage?: number;
|
|
2096
2096
|
/**
|
|
2097
2097
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2098
2098
|
*/
|
|
@@ -3009,6 +3009,10 @@ export interface DescribeSchedulerTaskTypeCntRequest {
|
|
|
3009
3009
|
* 项目ID
|
|
3010
3010
|
*/
|
|
3011
3011
|
ProjectId: string;
|
|
3012
|
+
/**
|
|
3013
|
+
* 1
|
|
3014
|
+
*/
|
|
3015
|
+
InCharge?: string;
|
|
3012
3016
|
}
|
|
3013
3017
|
/**
|
|
3014
3018
|
* TKE集群信息详情
|
|
@@ -5498,6 +5502,26 @@ export interface DescribeBatchOperateTaskDTO {
|
|
|
5498
5502
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5499
5503
|
*/
|
|
5500
5504
|
CreateTime?: string;
|
|
5505
|
+
/**
|
|
5506
|
+
* 周期类型
|
|
5507
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5508
|
+
*/
|
|
5509
|
+
CycleUnit?: string;
|
|
5510
|
+
/**
|
|
5511
|
+
* 调度计划
|
|
5512
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5513
|
+
*/
|
|
5514
|
+
ScheduleDesc?: string;
|
|
5515
|
+
/**
|
|
5516
|
+
* 数据源ID
|
|
5517
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5518
|
+
*/
|
|
5519
|
+
DatasourceId?: string;
|
|
5520
|
+
/**
|
|
5521
|
+
* 数据源类型
|
|
5522
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5523
|
+
*/
|
|
5524
|
+
DatasourceType?: string;
|
|
5501
5525
|
}
|
|
5502
5526
|
/**
|
|
5503
5527
|
* ModifyTaskLinks请求参数结构体
|
|
@@ -8066,7 +8090,7 @@ export interface DescribeInstanceListRequest {
|
|
|
8066
8090
|
*/
|
|
8067
8091
|
PageIndex: number;
|
|
8068
8092
|
/**
|
|
8069
|
-
*
|
|
8093
|
+
* 一页展示的条数
|
|
8070
8094
|
*/
|
|
8071
8095
|
PageSize: number;
|
|
8072
8096
|
/**
|
|
@@ -8090,7 +8114,11 @@ export interface DescribeInstanceListRequest {
|
|
|
8090
8114
|
*/
|
|
8091
8115
|
SortCol: string;
|
|
8092
8116
|
/**
|
|
8093
|
-
* 类型列表(如
|
|
8117
|
+
* 类型列表(如python任务类型:30
|
|
8118
|
+
pyspark任务类型:31
|
|
8119
|
+
hivesql任务类型:34
|
|
8120
|
+
shell任务类型:35
|
|
8121
|
+
sparksql任务类型:36 jdbcsql任务类型:21 dlc任务类型:32),可选
|
|
8094
8122
|
*/
|
|
8095
8123
|
TaskTypeList: Array<number>;
|
|
8096
8124
|
/**
|
|
@@ -11727,25 +11755,35 @@ export interface InstanceStatisticInfo {
|
|
|
11727
11755
|
* 实例状态趋势状态统计
|
|
11728
11756
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11729
11757
|
*/
|
|
11730
|
-
CountList
|
|
11758
|
+
CountList?: Array<number>;
|
|
11731
11759
|
/**
|
|
11732
11760
|
* 实例状态趋势时间分割
|
|
11733
11761
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11734
11762
|
*/
|
|
11735
|
-
TimeList
|
|
11763
|
+
TimeList?: Array<string>;
|
|
11736
11764
|
/**
|
|
11737
11765
|
* 实例状态标识:WAITING_RUNNING、KILLING、FAILED、FAILED_TRYING、SUCCEED 分别表示等待执行、正在终止、失败、失败重试、成功,用于实例状态分布和实例状态趋势
|
|
11738
11766
|
*/
|
|
11739
|
-
InstanceStatus
|
|
11767
|
+
InstanceStatus?: string;
|
|
11740
11768
|
/**
|
|
11741
11769
|
* 用于实例状态分布计数
|
|
11742
11770
|
*/
|
|
11743
|
-
InstanceCount
|
|
11771
|
+
InstanceCount?: number;
|
|
11744
11772
|
/**
|
|
11745
11773
|
* 当前展示时间
|
|
11746
11774
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11747
11775
|
*/
|
|
11748
|
-
ShowTime
|
|
11776
|
+
ShowTime?: string;
|
|
11777
|
+
/**
|
|
11778
|
+
* 1
|
|
11779
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11780
|
+
*/
|
|
11781
|
+
ReportTime?: string;
|
|
11782
|
+
/**
|
|
11783
|
+
* 1
|
|
11784
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11785
|
+
*/
|
|
11786
|
+
Count?: number;
|
|
11749
11787
|
}
|
|
11750
11788
|
/**
|
|
11751
11789
|
* DescribeRelatedInstances返回参数结构体
|
|
@@ -13917,7 +13955,7 @@ export interface CreateHiveTableResponse {
|
|
|
13917
13955
|
/**
|
|
13918
13956
|
* 建表是否成功
|
|
13919
13957
|
*/
|
|
13920
|
-
IsSuccess
|
|
13958
|
+
IsSuccess?: boolean;
|
|
13921
13959
|
/**
|
|
13922
13960
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
13923
13961
|
*/
|
|
@@ -14682,6 +14720,22 @@ export interface DescribeTaskByStatusReportRequest {
|
|
|
14682
14720
|
* 结束时间
|
|
14683
14721
|
*/
|
|
14684
14722
|
EndTime?: string;
|
|
14723
|
+
/**
|
|
14724
|
+
* 无
|
|
14725
|
+
*/
|
|
14726
|
+
AggregationUnit?: string;
|
|
14727
|
+
/**
|
|
14728
|
+
* 无
|
|
14729
|
+
*/
|
|
14730
|
+
CycleUnit?: string;
|
|
14731
|
+
/**
|
|
14732
|
+
* 无
|
|
14733
|
+
*/
|
|
14734
|
+
Status?: string;
|
|
14735
|
+
/**
|
|
14736
|
+
* 无
|
|
14737
|
+
*/
|
|
14738
|
+
InCharge?: string;
|
|
14685
14739
|
}
|
|
14686
14740
|
/**
|
|
14687
14741
|
* 质量评分趋势
|
|
@@ -15144,6 +15198,10 @@ export interface DescribeSchedulerTaskCntByStatusRequest {
|
|
|
15144
15198
|
* 111
|
|
15145
15199
|
*/
|
|
15146
15200
|
ProjectId?: string;
|
|
15201
|
+
/**
|
|
15202
|
+
* 1
|
|
15203
|
+
*/
|
|
15204
|
+
InCharge?: string;
|
|
15147
15205
|
}
|
|
15148
15206
|
/**
|
|
15149
15207
|
* DescribeInstances请求参数结构体
|
|
@@ -18655,6 +18713,22 @@ export interface DescribeBatchOperateTaskRequest {
|
|
|
18655
18713
|
* 1
|
|
18656
18714
|
*/
|
|
18657
18715
|
TenantId?: string;
|
|
18716
|
+
/**
|
|
18717
|
+
* 数据源ID列表
|
|
18718
|
+
*/
|
|
18719
|
+
DatasourceIdList?: Array<string>;
|
|
18720
|
+
/**
|
|
18721
|
+
* 数据源类型列表
|
|
18722
|
+
*/
|
|
18723
|
+
DatasourceTypeList?: Array<string>;
|
|
18724
|
+
/**
|
|
18725
|
+
* 调度单位类型列表
|
|
18726
|
+
*/
|
|
18727
|
+
CycleUnitList?: Array<string>;
|
|
18728
|
+
/**
|
|
18729
|
+
* 是否筛选出可提交的任务
|
|
18730
|
+
*/
|
|
18731
|
+
CanSubmit?: boolean;
|
|
18658
18732
|
}
|
|
18659
18733
|
/**
|
|
18660
18734
|
* MakeUpWorkflowNew请求参数结构体
|
|
@@ -19048,6 +19122,26 @@ export interface DescribeStatisticInstanceStatusTrendOpsRequest {
|
|
|
19048
19122
|
* 资源组名称
|
|
19049
19123
|
*/
|
|
19050
19124
|
ExecutionGroupName?: string;
|
|
19125
|
+
/**
|
|
19126
|
+
* 1
|
|
19127
|
+
*/
|
|
19128
|
+
InCharge?: string;
|
|
19129
|
+
/**
|
|
19130
|
+
* 1
|
|
19131
|
+
*/
|
|
19132
|
+
TaskType?: number;
|
|
19133
|
+
/**
|
|
19134
|
+
* 1
|
|
19135
|
+
*/
|
|
19136
|
+
StateList?: Array<number>;
|
|
19137
|
+
/**
|
|
19138
|
+
* D代表天,H代表小时
|
|
19139
|
+
*/
|
|
19140
|
+
AggregationUnit?: string;
|
|
19141
|
+
/**
|
|
19142
|
+
* 1
|
|
19143
|
+
*/
|
|
19144
|
+
AverageWindowSize?: number;
|
|
19051
19145
|
}
|
|
19052
19146
|
/**
|
|
19053
19147
|
* DescribeEventCases返回参数结构体
|
|
@@ -19332,6 +19426,14 @@ export interface TaskByStatus {
|
|
|
19332
19426
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
19333
19427
|
*/
|
|
19334
19428
|
CycleUnit?: string;
|
|
19429
|
+
/**
|
|
19430
|
+
* 1
|
|
19431
|
+
*/
|
|
19432
|
+
ReportTime?: string;
|
|
19433
|
+
/**
|
|
19434
|
+
* 1
|
|
19435
|
+
*/
|
|
19436
|
+
Count?: number;
|
|
19335
19437
|
}
|
|
19336
19438
|
/**
|
|
19337
19439
|
* DescribeFolderWorkflowList返回参数结构体
|
|
@@ -19865,6 +19967,18 @@ export interface DescribeSchedulerInstanceStatusRequest {
|
|
|
19865
19967
|
* 执行资源组名字
|
|
19866
19968
|
*/
|
|
19867
19969
|
ExecutionGroupName?: string;
|
|
19970
|
+
/**
|
|
19971
|
+
* 开始时间
|
|
19972
|
+
*/
|
|
19973
|
+
StartTime?: string;
|
|
19974
|
+
/**
|
|
19975
|
+
* 结束时间
|
|
19976
|
+
*/
|
|
19977
|
+
EndTime?: string;
|
|
19978
|
+
/**
|
|
19979
|
+
* 责任人
|
|
19980
|
+
*/
|
|
19981
|
+
InCharge?: string;
|
|
19868
19982
|
}
|
|
19869
19983
|
/**
|
|
19870
19984
|
* DescribeScheduleInstances请求参数结构体
|
|
@@ -20068,6 +20182,14 @@ export interface DescribeSchedulerRunTimeInstanceCntByStatusRequest {
|
|
|
20068
20182
|
* 结束日前:2023-03-20
|
|
20069
20183
|
*/
|
|
20070
20184
|
EndTime?: string;
|
|
20185
|
+
/**
|
|
20186
|
+
* 1
|
|
20187
|
+
*/
|
|
20188
|
+
TaskType?: number;
|
|
20189
|
+
/**
|
|
20190
|
+
* 1
|
|
20191
|
+
*/
|
|
20192
|
+
InCharge?: string;
|
|
20071
20193
|
}
|
|
20072
20194
|
/**
|
|
20073
20195
|
* map
|
|
@@ -20308,7 +20430,7 @@ export interface DescribeInstanceLastLogResponse {
|
|
|
20308
20430
|
/**
|
|
20309
20431
|
* 日志
|
|
20310
20432
|
*/
|
|
20311
|
-
Data
|
|
20433
|
+
Data?: string;
|
|
20312
20434
|
/**
|
|
20313
20435
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
20314
20436
|
*/
|
|
@@ -20440,7 +20562,7 @@ export interface CreateHiveTableRequest {
|
|
|
20440
20562
|
*/
|
|
20441
20563
|
Database: string;
|
|
20442
20564
|
/**
|
|
20443
|
-
*
|
|
20565
|
+
* base64转码之后的建表语句
|
|
20444
20566
|
*/
|
|
20445
20567
|
DDLSql: string;
|
|
20446
20568
|
/**
|
|
@@ -20752,6 +20874,10 @@ export interface DescribeTaskByCycleRequest {
|
|
|
20752
20874
|
* 项目ID
|
|
20753
20875
|
*/
|
|
20754
20876
|
ProjectId: string;
|
|
20877
|
+
/**
|
|
20878
|
+
* 1
|
|
20879
|
+
*/
|
|
20880
|
+
InCharge?: string;
|
|
20755
20881
|
}
|
|
20756
20882
|
/**
|
|
20757
20883
|
* Id包装对象
|
|
@@ -21150,7 +21276,7 @@ export interface DescribeInLongTkeClusterListRequest {
|
|
|
21150
21276
|
*/
|
|
21151
21277
|
ClusterName?: string;
|
|
21152
21278
|
/**
|
|
21153
|
-
* TKE集群状态 (Running 运行中 Creating 创建中 Idling 闲置中 Abnormal 异常 Failed
|
|
21279
|
+
* TKE集群状态 (Running 运行中 Creating 创建中 Idling 闲置中 Abnormal 异常 Failed 失败 Deleting 删除中 Scaling 规模调整中 Upgrading 升级中 Isolated 欠费隔离中 NodeUpgrading 节点升级中 Recovering 唤醒中 Activating 激活中 MasterScaling Master扩缩容中 Waiting 等待注册 ClusterLevelUpgrading 调整规格中 ResourceIsolate 隔离中 ResourceIsolated 已隔离 ResourceReverse 冲正中 Trading 集群开通中 ResourceReversal 集群冲正 ClusterLevelTrading 集群变配交易中)
|
|
21154
21280
|
多个状态用逗号连接。
|
|
21155
21281
|
*/
|
|
21156
21282
|
Status?: string;
|