tencentcloud-sdk-nodejs-dlc 4.1.91 → 4.1.92
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
@@ -501,6 +501,31 @@ export interface DeleteNativeSparkSessionResponse {
|
|
501
501
|
*/
|
502
502
|
RequestId?: string;
|
503
503
|
}
|
504
|
+
/**
|
505
|
+
* 引擎资源弹性伸缩计划
|
506
|
+
*/
|
507
|
+
export interface ElasticPlan {
|
508
|
+
/**
|
509
|
+
* 最小集群数
|
510
|
+
*/
|
511
|
+
MinElasticClusters?: number;
|
512
|
+
/**
|
513
|
+
* 最大集群数
|
514
|
+
*/
|
515
|
+
MaxElasticClusters?: number;
|
516
|
+
/**
|
517
|
+
* 最大排队时间
|
518
|
+
*/
|
519
|
+
TolerableQueueTime?: number;
|
520
|
+
/**
|
521
|
+
* 开始时间,Once格式:yyyy-MM-dd HH:mm:ss; 非Once格式: HH:mm:ss
|
522
|
+
*/
|
523
|
+
StartTime?: string;
|
524
|
+
/**
|
525
|
+
* 结束时间,Once格式:yyyy-MM-dd HH:mm:ss; 非Once格式: HH:mm:ss
|
526
|
+
*/
|
527
|
+
EndTime?: string;
|
528
|
+
}
|
504
529
|
/**
|
505
530
|
* DescribeDMSPartitions请求参数结构体
|
506
531
|
*/
|
@@ -899,6 +924,31 @@ export interface BatchSqlTask {
|
|
899
924
|
*/
|
900
925
|
Message?: string;
|
901
926
|
}
|
927
|
+
/**
|
928
|
+
* 引擎资源弹性伸缩策略
|
929
|
+
*/
|
930
|
+
export interface ScheduleElasticityConf {
|
931
|
+
/**
|
932
|
+
* 是否开启弹性伸缩:true/false
|
933
|
+
*/
|
934
|
+
ScheduledElasticityEnabled?: boolean;
|
935
|
+
/**
|
936
|
+
* 调度类型:ONCE(一次性调度),DAILY(每日调度),WEEKLY(每周调度),MONTHLY(每月调度)
|
937
|
+
*/
|
938
|
+
ScheduleType?: string;
|
939
|
+
/**
|
940
|
+
* 调度日期:WEEKLY传:1~7; MONTHLY传:1~31;其它类型不传
|
941
|
+
*/
|
942
|
+
ScheduleDays?: Array<number | bigint>;
|
943
|
+
/**
|
944
|
+
* 调度时区
|
945
|
+
*/
|
946
|
+
TimeZone?: string;
|
947
|
+
/**
|
948
|
+
* 弹性伸缩计划
|
949
|
+
*/
|
950
|
+
ElasticPlans?: Array<ElasticPlan>;
|
951
|
+
}
|
902
952
|
/**
|
903
953
|
* CreateNotebookSession请求参数结构体
|
904
954
|
*/
|
@@ -1053,6 +1103,10 @@ export interface UpdateDataEngineRequest {
|
|
1053
1103
|
* Spark批作业集群Session资源配置模板
|
1054
1104
|
*/
|
1055
1105
|
SessionResourceTemplate?: SessionResourceTemplate;
|
1106
|
+
/**
|
1107
|
+
* 引擎资源弹性伸缩策略
|
1108
|
+
*/
|
1109
|
+
ScheduleElasticityConf?: ScheduleElasticityConf;
|
1056
1110
|
}
|
1057
1111
|
/**
|
1058
1112
|
* SmartOptimizerWrittenPolicy
|
@@ -5039,6 +5093,10 @@ export interface DataEngineInfo {
|
|
5039
5093
|
注意:此字段可能返回 null,表示取不到有效值。
|
5040
5094
|
*/
|
5041
5095
|
IsAIEngine?: number;
|
5096
|
+
/**
|
5097
|
+
* 引擎资源弹性伸缩策略
|
5098
|
+
*/
|
5099
|
+
ScheduleElasticityConf?: ScheduleElasticityConf;
|
5042
5100
|
}
|
5043
5101
|
/**
|
5044
5102
|
* DescribeSessionImageVersion返回参数结构体
|
@@ -10766,6 +10824,10 @@ export interface DescribeDataEnginesRequest {
|
|
10766
10824
|
* 引擎类型,支持:SparkSQL、SparkBatch、PrestoSQL、Kyuubi
|
10767
10825
|
*/
|
10768
10826
|
EngineTypeDetail?: string;
|
10827
|
+
/**
|
10828
|
+
* 默认 false, 为 true 时仅列出具有洞察 listener 的引擎
|
10829
|
+
*/
|
10830
|
+
ListHasListener?: boolean;
|
10769
10831
|
}
|
10770
10832
|
/**
|
10771
10833
|
* 日志详情
|