tencentcloud-sdk-nodejs-tke 4.0.246 → 4.0.255
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 +1625 -12
- package/package.json +1 -1
- package/products.md +63 -59
- package/src/services/tke/v20180525/tke_client.ts +25 -0
- package/src/services/tke/v20180525/tke_models.ts +118 -0
- 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 +100 -0
|
@@ -1456,6 +1456,19 @@ export interface DescribePrometheusAgentInstancesRequest {
|
|
|
1456
1456
|
*/
|
|
1457
1457
|
ClusterId: string;
|
|
1458
1458
|
}
|
|
1459
|
+
/**
|
|
1460
|
+
* ForwardApplicationRequestV3返回参数结构体
|
|
1461
|
+
*/
|
|
1462
|
+
export interface ForwardApplicationRequestV3Response {
|
|
1463
|
+
/**
|
|
1464
|
+
* 请求集群addon后返回的数据
|
|
1465
|
+
*/
|
|
1466
|
+
ResponseBody: string;
|
|
1467
|
+
/**
|
|
1468
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1469
|
+
*/
|
|
1470
|
+
RequestId?: string;
|
|
1471
|
+
}
|
|
1459
1472
|
/**
|
|
1460
1473
|
* 集群网络相关的参数
|
|
1461
1474
|
*/
|
|
@@ -2275,6 +2288,11 @@ export interface EksCi {
|
|
|
2275
2288
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2276
2289
|
*/
|
|
2277
2290
|
AutoCreatedEipId?: string;
|
|
2291
|
+
/**
|
|
2292
|
+
* 容器状态是否持久化
|
|
2293
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2294
|
+
*/
|
|
2295
|
+
PersistStatus?: boolean;
|
|
2278
2296
|
}
|
|
2279
2297
|
/**
|
|
2280
2298
|
* DisableVpcCniNetworkType返回参数结构体
|
|
@@ -3877,6 +3895,24 @@ export interface ControllerStatus {
|
|
|
3877
3895
|
*/
|
|
3878
3896
|
Enabled: boolean;
|
|
3879
3897
|
}
|
|
3898
|
+
/**
|
|
3899
|
+
* app所支持的chart
|
|
3900
|
+
*/
|
|
3901
|
+
export interface AppChart {
|
|
3902
|
+
/**
|
|
3903
|
+
* chart名称
|
|
3904
|
+
*/
|
|
3905
|
+
Name: string;
|
|
3906
|
+
/**
|
|
3907
|
+
* chart的标签
|
|
3908
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3909
|
+
*/
|
|
3910
|
+
Label: string;
|
|
3911
|
+
/**
|
|
3912
|
+
* chart的版本
|
|
3913
|
+
*/
|
|
3914
|
+
LatestVersion: string;
|
|
3915
|
+
}
|
|
3880
3916
|
/**
|
|
3881
3917
|
* >描述键值对过滤器,用于条件过滤查询。例如过滤ID、名称、状态等
|
|
3882
3918
|
> * 若存在多个`Filter`时,`Filter`间的关系为逻辑与(`AND`)关系。
|
|
@@ -3993,6 +4029,23 @@ export interface UpgradeAbleInstancesItem {
|
|
|
3993
4029
|
*/
|
|
3994
4030
|
LatestVersion: string;
|
|
3995
4031
|
}
|
|
4032
|
+
/**
|
|
4033
|
+
* GetTkeAppChartList请求参数结构体
|
|
4034
|
+
*/
|
|
4035
|
+
export interface GetTkeAppChartListRequest {
|
|
4036
|
+
/**
|
|
4037
|
+
* app类型,取值log,scheduler,network,storage,monitor,dns,image,other,invisible
|
|
4038
|
+
*/
|
|
4039
|
+
Kind?: string;
|
|
4040
|
+
/**
|
|
4041
|
+
* app支持的操作系统,取值arm32、arm64、amd64
|
|
4042
|
+
*/
|
|
4043
|
+
Arch?: string;
|
|
4044
|
+
/**
|
|
4045
|
+
* 集群类型,取值tke、eks
|
|
4046
|
+
*/
|
|
4047
|
+
ClusterType?: string;
|
|
4048
|
+
}
|
|
3996
4049
|
/**
|
|
3997
4050
|
* CreateClusterEndpoint返回参数结构体
|
|
3998
4051
|
*/
|
|
@@ -4170,6 +4223,20 @@ export interface ModifyPrometheusTemplateResponse {
|
|
|
4170
4223
|
*/
|
|
4171
4224
|
RequestId?: string;
|
|
4172
4225
|
}
|
|
4226
|
+
/**
|
|
4227
|
+
* GetTkeAppChartList返回参数结构体
|
|
4228
|
+
*/
|
|
4229
|
+
export interface GetTkeAppChartListResponse {
|
|
4230
|
+
/**
|
|
4231
|
+
* 所支持的chart列表
|
|
4232
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4233
|
+
*/
|
|
4234
|
+
AppCharts: Array<AppChart>;
|
|
4235
|
+
/**
|
|
4236
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4237
|
+
*/
|
|
4238
|
+
RequestId?: string;
|
|
4239
|
+
}
|
|
4173
4240
|
/**
|
|
4174
4241
|
* DeletePrometheusTemplate返回参数结构体
|
|
4175
4242
|
*/
|
|
@@ -5920,6 +5987,39 @@ export interface DescribeClusterNodePoolDetailResponse {
|
|
|
5920
5987
|
*/
|
|
5921
5988
|
RequestId?: string;
|
|
5922
5989
|
}
|
|
5990
|
+
/**
|
|
5991
|
+
* ForwardApplicationRequestV3请求参数结构体
|
|
5992
|
+
*/
|
|
5993
|
+
export interface ForwardApplicationRequestV3Request {
|
|
5994
|
+
/**
|
|
5995
|
+
* 请求集群addon的访问
|
|
5996
|
+
*/
|
|
5997
|
+
Method: string;
|
|
5998
|
+
/**
|
|
5999
|
+
* 请求集群addon的路径
|
|
6000
|
+
*/
|
|
6001
|
+
Path: string;
|
|
6002
|
+
/**
|
|
6003
|
+
* 请求集群addon后允许接收的数据格式
|
|
6004
|
+
*/
|
|
6005
|
+
Accept?: string;
|
|
6006
|
+
/**
|
|
6007
|
+
* 请求集群addon的数据格式
|
|
6008
|
+
*/
|
|
6009
|
+
ContentType?: string;
|
|
6010
|
+
/**
|
|
6011
|
+
* 请求集群addon的数据
|
|
6012
|
+
*/
|
|
6013
|
+
RequestBody?: string;
|
|
6014
|
+
/**
|
|
6015
|
+
* 集群名称
|
|
6016
|
+
*/
|
|
6017
|
+
ClusterName?: string;
|
|
6018
|
+
/**
|
|
6019
|
+
* 是否编码请求内容
|
|
6020
|
+
*/
|
|
6021
|
+
EncodedBody?: string;
|
|
6022
|
+
}
|
|
5923
6023
|
/**
|
|
5924
6024
|
* DescribeClusterControllers请求参数结构体
|
|
5925
6025
|
*/
|