tencentcloud-sdk-nodejs 4.1.56 → 4.1.58
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/es/common/sdk_version.js +1 -1
- package/es/services/csip/v20221121/csip_client.js +3 -0
- package/es/services/goosefs/v20220519/goosefs_client.js +3 -0
- package/es/services/gs/v20191118/gs_client.js +9 -0
- package/es/services/ioa/v20220601/ioa_client.js +10 -4
- package/es/services/tke/v20180525/tke_client.js +6 -0
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/bmvpc/v20180625/bmvpc_client.d.ts +54 -18
- package/tencentcloud/services/bmvpc/v20180625/bmvpc_client.js +54 -18
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +4 -4
- package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +2 -2
- package/tencentcloud/services/cfs/v20190719/cfs_models.d.ts +1 -1
- package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +1 -1
- package/tencentcloud/services/clb/v20180317/clb_models.d.ts +1 -1
- package/tencentcloud/services/csip/v20221121/csip_client.d.ts +5 -1
- package/tencentcloud/services/csip/v20221121/csip_client.js +6 -0
- package/tencentcloud/services/csip/v20221121/csip_models.d.ts +226 -23
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +1 -0
- package/tencentcloud/services/ess/v20201111/ess_client.js +1 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +17 -3
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +1 -0
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +1 -0
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +14 -6
- package/tencentcloud/services/goosefs/v20220519/goosefs_client.d.ts +5 -1
- package/tencentcloud/services/goosefs/v20220519/goosefs_client.js +6 -0
- package/tencentcloud/services/goosefs/v20220519/goosefs_models.d.ts +56 -30
- package/tencentcloud/services/gs/v20191118/gs_client.d.ts +13 -1
- package/tencentcloud/services/gs/v20191118/gs_client.js +18 -0
- package/tencentcloud/services/gs/v20191118/gs_models.d.ts +111 -5
- package/tencentcloud/services/hunyuan/v20230901/hunyuan_models.d.ts +32 -0
- package/tencentcloud/services/ioa/v20220601/ioa_client.d.ts +13 -5
- package/tencentcloud/services/ioa/v20220601/ioa_client.js +18 -6
- package/tencentcloud/services/ioa/v20220601/ioa_models.d.ts +257 -72
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +2 -2
- package/tencentcloud/services/live/v20180801/live_client.d.ts +0 -1
- package/tencentcloud/services/live/v20180801/live_client.js +0 -1
- package/tencentcloud/services/live/v20180801/live_models.d.ts +2 -2
- package/tencentcloud/services/lke/v20231130/lke_models.d.ts +14 -2
- package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +3 -3
- package/tencentcloud/services/tke/v20180525/tke_client.d.ts +9 -1
- package/tencentcloud/services/tke/v20180525/tke_client.js +12 -0
- package/tencentcloud/services/tke/v20180525/tke_models.d.ts +64 -4
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +32 -2
- package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +4 -4
|
@@ -715,6 +715,27 @@ export interface ClusterLevelChangeRecord {
|
|
|
715
715
|
*/
|
|
716
716
|
EndedAt?: string;
|
|
717
717
|
}
|
|
718
|
+
/**
|
|
719
|
+
* ModifyMasterComponent请求参数结构体
|
|
720
|
+
*/
|
|
721
|
+
export interface ModifyMasterComponentRequest {
|
|
722
|
+
/**
|
|
723
|
+
* 集群ID
|
|
724
|
+
*/
|
|
725
|
+
ClusterId: string;
|
|
726
|
+
/**
|
|
727
|
+
* master组件名称,支持kube-apiserver、kube-scheduler、kube-controller-manager
|
|
728
|
+
*/
|
|
729
|
+
Component: string;
|
|
730
|
+
/**
|
|
731
|
+
* 停机或恢复,值只能为:shutdown或restore
|
|
732
|
+
*/
|
|
733
|
+
Operation: string;
|
|
734
|
+
/**
|
|
735
|
+
* 为true时,不真正执行停机或恢复操作
|
|
736
|
+
*/
|
|
737
|
+
DryRun?: boolean;
|
|
738
|
+
}
|
|
718
739
|
/**
|
|
719
740
|
* ModifyPrometheusAlertRule返回参数结构体
|
|
720
741
|
*/
|
|
@@ -844,6 +865,15 @@ export interface EnableClusterAuditResponse {
|
|
|
844
865
|
*/
|
|
845
866
|
RequestId?: string;
|
|
846
867
|
}
|
|
868
|
+
/**
|
|
869
|
+
* ModifyMasterComponent返回参数结构体
|
|
870
|
+
*/
|
|
871
|
+
export interface ModifyMasterComponentResponse {
|
|
872
|
+
/**
|
|
873
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
874
|
+
*/
|
|
875
|
+
RequestId?: string;
|
|
876
|
+
}
|
|
847
877
|
/**
|
|
848
878
|
* CreateBackupStorageLocation返回参数结构体
|
|
849
879
|
*/
|
|
@@ -1973,13 +2003,21 @@ export interface CreatePrometheusRecordRuleYamlRequest {
|
|
|
1973
2003
|
Content: string;
|
|
1974
2004
|
}
|
|
1975
2005
|
/**
|
|
1976
|
-
*
|
|
2006
|
+
* DescribeMasterComponent返回参数结构体
|
|
1977
2007
|
*/
|
|
1978
|
-
export interface
|
|
2008
|
+
export interface DescribeMasterComponentResponse {
|
|
1979
2009
|
/**
|
|
1980
|
-
*
|
|
2010
|
+
* master组件名称
|
|
1981
2011
|
*/
|
|
1982
|
-
|
|
2012
|
+
Component?: string;
|
|
2013
|
+
/**
|
|
2014
|
+
* master组件状态,三种状态:running、updating、shutdown
|
|
2015
|
+
*/
|
|
2016
|
+
Status?: string;
|
|
2017
|
+
/**
|
|
2018
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2019
|
+
*/
|
|
2020
|
+
RequestId?: string;
|
|
1983
2021
|
}
|
|
1984
2022
|
/**
|
|
1985
2023
|
* 集群的实例信息
|
|
@@ -10167,6 +10205,15 @@ export interface DescribeECMInstancesRequest {
|
|
|
10167
10205
|
*/
|
|
10168
10206
|
Filters?: Array<Filter>;
|
|
10169
10207
|
}
|
|
10208
|
+
/**
|
|
10209
|
+
* DescribeEnableVpcCniProgress请求参数结构体
|
|
10210
|
+
*/
|
|
10211
|
+
export interface DescribeEnableVpcCniProgressRequest {
|
|
10212
|
+
/**
|
|
10213
|
+
* 开启vpc-cni的集群ID
|
|
10214
|
+
*/
|
|
10215
|
+
ClusterId: string;
|
|
10216
|
+
}
|
|
10170
10217
|
/**
|
|
10171
10218
|
* DrainClusterVirtualNode返回参数结构体
|
|
10172
10219
|
*/
|
|
@@ -10962,6 +11009,19 @@ export interface GetUpgradeInstanceProgressRequest {
|
|
|
10962
11009
|
*/
|
|
10963
11010
|
Offset?: number;
|
|
10964
11011
|
}
|
|
11012
|
+
/**
|
|
11013
|
+
* DescribeMasterComponent请求参数结构体
|
|
11014
|
+
*/
|
|
11015
|
+
export interface DescribeMasterComponentRequest {
|
|
11016
|
+
/**
|
|
11017
|
+
* 集群ID
|
|
11018
|
+
*/
|
|
11019
|
+
ClusterId: string;
|
|
11020
|
+
/**
|
|
11021
|
+
* master组件名称,支持kube-apiserver、kube-scheduler、kube-controller-manager
|
|
11022
|
+
*/
|
|
11023
|
+
Component: string;
|
|
11024
|
+
}
|
|
10965
11025
|
/**
|
|
10966
11026
|
* UpdateEKSCluster返回参数结构体
|
|
10967
11027
|
*/
|
|
@@ -75,6 +75,10 @@ export interface AgentConfig {
|
|
|
75
75
|
* 声纹配置
|
|
76
76
|
*/
|
|
77
77
|
VoicePrint?: VoicePrint;
|
|
78
|
+
/**
|
|
79
|
+
* 语义断句检测
|
|
80
|
+
*/
|
|
81
|
+
TurnDetection?: TurnDetection;
|
|
78
82
|
}
|
|
79
83
|
/**
|
|
80
84
|
* CreatePicture请求参数结构体
|
|
@@ -3393,7 +3397,7 @@ export interface VideoParams {
|
|
|
3393
3397
|
*/
|
|
3394
3398
|
export interface RegisterVoicePrintRequest {
|
|
3395
3399
|
/**
|
|
3396
|
-
* 整个wav音频文件的base64字符串,其中wav文件限定为16k
|
|
3400
|
+
* 整个wav音频文件的base64字符串,其中wav文件限定为16k采样率, 16bit位深, 单声道, 8到18秒音频时长,有效音频不小于6秒(不能有太多静音段),编码数据大小不超过2M
|
|
3397
3401
|
*/
|
|
3398
3402
|
Audio: string;
|
|
3399
3403
|
/**
|
|
@@ -3865,6 +3869,32 @@ export interface AgentParams {
|
|
|
3865
3869
|
*/
|
|
3866
3870
|
MaxIdleTime?: number;
|
|
3867
3871
|
}
|
|
3872
|
+
/**
|
|
3873
|
+
* 断句配置
|
|
3874
|
+
*/
|
|
3875
|
+
export interface TurnDetection {
|
|
3876
|
+
/**
|
|
3877
|
+
* TurnDetectionMode为3时生效,语义断句的灵敏程度
|
|
3878
|
+
|
|
3879
|
+
|
|
3880
|
+
功能简介:根据用户所说的话来判断其已完成发言来分割音频
|
|
3881
|
+
|
|
3882
|
+
|
|
3883
|
+
可选: "low" | "medium" | "high" | "auto"
|
|
3884
|
+
|
|
3885
|
+
|
|
3886
|
+
auto 是默认值,与 medium 相同。
|
|
3887
|
+
low 将让用户有足够的时间说话。
|
|
3888
|
+
high 将尽快对音频进行分块。
|
|
3889
|
+
|
|
3890
|
+
|
|
3891
|
+
如果您希望模型在对话模式下更频繁地响应,可以将 SemanticEagerness 设置为 high
|
|
3892
|
+
如果您希望在用户停顿时,AI能够等待片刻,可以将 SemanticEagerness 设置为 low
|
|
3893
|
+
无论什么模式,最终都会分割送个大模型进行回复
|
|
3894
|
+
|
|
3895
|
+
*/
|
|
3896
|
+
SemanticEagerness?: string;
|
|
3897
|
+
}
|
|
3868
3898
|
/**
|
|
3869
3899
|
* UpdateStreamIngest请求参数结构体
|
|
3870
3900
|
*/
|
|
@@ -3951,7 +3981,7 @@ export interface UpdateVoicePrintRequest {
|
|
|
3951
3981
|
*/
|
|
3952
3982
|
AudioFormat?: number;
|
|
3953
3983
|
/**
|
|
3954
|
-
* 整个wav音频文件的base64字符串,其中wav文件限定为16k
|
|
3984
|
+
* 整个wav音频文件的base64字符串,其中wav文件限定为16k采样率, 16bit位深, 单声道, 8到18秒音频时长,有效音频不小于6秒(不能有太多静音段),编码数据大小不超过2M
|
|
3955
3985
|
*/
|
|
3956
3986
|
Audio?: string;
|
|
3957
3987
|
/**
|
|
@@ -862,7 +862,7 @@ export interface CreateGatewayApiResponse {
|
|
|
862
862
|
/**
|
|
863
863
|
* 是否成功
|
|
864
864
|
*/
|
|
865
|
-
Result
|
|
865
|
+
Result?: boolean;
|
|
866
866
|
/**
|
|
867
867
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
868
868
|
*/
|
|
@@ -951,7 +951,7 @@ export interface DescribeGroupBindedGatewaysResponse {
|
|
|
951
951
|
/**
|
|
952
952
|
* 翻页结构体
|
|
953
953
|
*/
|
|
954
|
-
Result
|
|
954
|
+
Result?: TsfPageGatewayDeployGroup;
|
|
955
955
|
/**
|
|
956
956
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
957
957
|
*/
|
|
@@ -12825,7 +12825,7 @@ export interface CreateConfigTemplateResponse {
|
|
|
12825
12825
|
/**
|
|
12826
12826
|
* true:创建成功;false:创建失败
|
|
12827
12827
|
*/
|
|
12828
|
-
Result
|
|
12828
|
+
Result?: boolean;
|
|
12829
12829
|
/**
|
|
12830
12830
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
12831
12831
|
*/
|
|
@@ -14601,7 +14601,7 @@ export interface DescribeConfigSummaryResponse {
|
|
|
14601
14601
|
/**
|
|
14602
14602
|
* 配置项分页对象
|
|
14603
14603
|
*/
|
|
14604
|
-
Result
|
|
14604
|
+
Result?: TsfPageConfig;
|
|
14605
14605
|
/**
|
|
14606
14606
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
14607
14607
|
*/
|