tencentcloud-sdk-nodejs-tke 4.1.128 → 4.1.130
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
|
@@ -485,7 +485,13 @@ export interface Addon {
|
|
|
485
485
|
*/
|
|
486
486
|
RawValues?: string;
|
|
487
487
|
/**
|
|
488
|
-
* addon
|
|
488
|
+
* addon的状态:
|
|
489
|
+
- Installing:安装中
|
|
490
|
+
- Upgrading:升级中
|
|
491
|
+
- Terminating:删除中
|
|
492
|
+
- Succeeded:安装/升级成功
|
|
493
|
+
- InstallFailed:安装失败
|
|
494
|
+
- UpgradFailed:升级失败
|
|
489
495
|
*/
|
|
490
496
|
Phase?: string;
|
|
491
497
|
/**
|
|
@@ -1192,11 +1198,11 @@ export interface ExtensionAddon {
|
|
|
1192
1198
|
*/
|
|
1193
1199
|
export interface DescribeAddonValuesRequest {
|
|
1194
1200
|
/**
|
|
1195
|
-
* 集群ID
|
|
1201
|
+
* 集群ID,请从容器服务控制台集群列表中获取(https://console.cloud.tencent.com/tke2/cluster)。
|
|
1196
1202
|
*/
|
|
1197
1203
|
ClusterId: string;
|
|
1198
1204
|
/**
|
|
1199
|
-
* addon
|
|
1205
|
+
* addon名称,请从容器服务控制台进入集群详情页后,在组件管理页面中获取。
|
|
1200
1206
|
*/
|
|
1201
1207
|
AddonName: string;
|
|
1202
1208
|
}
|
|
@@ -1611,11 +1617,11 @@ export interface DescribeImageCachesRequest {
|
|
|
1611
1617
|
*/
|
|
1612
1618
|
export interface DeleteAddonRequest {
|
|
1613
1619
|
/**
|
|
1614
|
-
* 集群ID
|
|
1620
|
+
* 集群ID,请从容器服务控制台集群列表中获取(https://console.cloud.tencent.com/tke2/cluster)。
|
|
1615
1621
|
*/
|
|
1616
1622
|
ClusterId: string;
|
|
1617
1623
|
/**
|
|
1618
|
-
* addon
|
|
1624
|
+
* addon名称,请从容器服务控制台进入集群详情页后,在组件管理页面中获取。
|
|
1619
1625
|
*/
|
|
1620
1626
|
AddonName: string;
|
|
1621
1627
|
}
|
|
@@ -6876,6 +6882,11 @@ export interface CreateReservedInstancesRequest {
|
|
|
6876
6882
|
* 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
|
|
6877
6883
|
*/
|
|
6878
6884
|
ClientToken?: string;
|
|
6885
|
+
/**
|
|
6886
|
+
* 是否只预检此次请求。
|
|
6887
|
+
true:只预检,不会创建实例。默认值为:false。
|
|
6888
|
+
*/
|
|
6889
|
+
DryRun?: boolean;
|
|
6879
6890
|
}
|
|
6880
6891
|
/**
|
|
6881
6892
|
* 节点池描述
|
|
@@ -8553,7 +8564,7 @@ export interface ReleaseDetails {
|
|
|
8553
8564
|
*/
|
|
8554
8565
|
export interface DescribeAddonRequest {
|
|
8555
8566
|
/**
|
|
8556
|
-
* 集群ID
|
|
8567
|
+
* 集群ID,请从容器服务控制台集群列表中获取(https://console.cloud.tencent.com/tke2/cluster)。
|
|
8557
8568
|
*/
|
|
8558
8569
|
ClusterId: string;
|
|
8559
8570
|
/**
|
|
@@ -10111,11 +10122,11 @@ export interface ModifyClusterAuthenticationOptionsResponse {
|
|
|
10111
10122
|
*/
|
|
10112
10123
|
export interface UpdateAddonRequest {
|
|
10113
10124
|
/**
|
|
10114
|
-
* 集群ID
|
|
10125
|
+
* 集群ID,请从容器服务控制台集群列表中获取(https://console.cloud.tencent.com/tke2/cluster)。
|
|
10115
10126
|
*/
|
|
10116
10127
|
ClusterId: string;
|
|
10117
10128
|
/**
|
|
10118
|
-
* addon
|
|
10129
|
+
* addon名称,请从容器服务控制台进入集群详情页后,在组件管理页面中获取。
|
|
10119
10130
|
*/
|
|
10120
10131
|
AddonName: string;
|
|
10121
10132
|
/**
|
|
@@ -10123,7 +10134,7 @@ export interface UpdateAddonRequest {
|
|
|
10123
10134
|
*/
|
|
10124
10135
|
AddonVersion?: string;
|
|
10125
10136
|
/**
|
|
10126
|
-
* addon的参数,是一个json格式的base64转码后的字符串(addon参数由DescribeAddonValues获取,不传RawValues时AddonVersion
|
|
10137
|
+
* addon的参数,是一个json格式的base64转码后的字符串(addon参数由DescribeAddonValues获取,不传RawValues时AddonVersion必传)。
|
|
10127
10138
|
*/
|
|
10128
10139
|
RawValues?: string;
|
|
10129
10140
|
/**
|
|
@@ -10131,7 +10142,7 @@ export interface UpdateAddonRequest {
|
|
|
10131
10142
|
*/
|
|
10132
10143
|
UpdateStrategy?: string;
|
|
10133
10144
|
/**
|
|
10134
|
-
* 是否仅做更新检查,设置为true
|
|
10145
|
+
* 是否仅做更新检查,设置为true时仅做检查,不会更新组件。默认值为 false。
|
|
10135
10146
|
*/
|
|
10136
10147
|
DryRun?: boolean;
|
|
10137
10148
|
}
|
|
@@ -12558,11 +12569,11 @@ export interface DeletePrometheusRecordRuleYamlRequest {
|
|
|
12558
12569
|
*/
|
|
12559
12570
|
export interface InstallAddonRequest {
|
|
12560
12571
|
/**
|
|
12561
|
-
* 集群ID(仅支持标准tke
|
|
12572
|
+
* 集群ID(仅支持标准tke集群),请从容器服务控制台集群列表中获取(https://console.cloud.tencent.com/tke2/cluster)。
|
|
12562
12573
|
*/
|
|
12563
12574
|
ClusterId: string;
|
|
12564
12575
|
/**
|
|
12565
|
-
* addon
|
|
12576
|
+
* addon名称,请从容器服务控制台进入集群详情页后,在组件管理页面中获取。
|
|
12566
12577
|
*/
|
|
12567
12578
|
AddonName: string;
|
|
12568
12579
|
/**
|
|
@@ -12574,7 +12585,7 @@ export interface InstallAddonRequest {
|
|
|
12574
12585
|
*/
|
|
12575
12586
|
RawValues?: string;
|
|
12576
12587
|
/**
|
|
12577
|
-
* 是否仅做安装检查,设置为true
|
|
12588
|
+
* 是否仅做安装检查,设置为true时仅做检查,不会安装组件。默认值为 false。
|
|
12578
12589
|
*/
|
|
12579
12590
|
DryRun?: boolean;
|
|
12580
12591
|
}
|