tencentcloud-sdk-nodejs-tke 4.1.171 → 4.1.172

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-tke",
3
- "version": "4.1.171",
3
+ "version": "4.1.172",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -3967,7 +3967,7 @@ export interface BackupStorageLocation {
3967
3967
  */
3968
3968
  export interface DeleteClusterMaintenanceWindowAndExclusionRequest {
3969
3969
  /**
3970
- * 集群ID
3970
+ * 集群ID,可以从容器服务控制台计划升级功能集群维护窗口页面获取(https://console.cloud.tencent.com/tke2/upgrade-plan)。
3971
3971
  */
3972
3972
  ClusterID: string;
3973
3973
  }
@@ -4698,7 +4698,7 @@ export interface CreateClusterInstancesRequest {
4698
4698
  */
4699
4699
  export interface CreateClusterMaintenanceWindowAndExclusionsRequest {
4700
4700
  /**
4701
- * 集群ID
4701
+ * 集群ID,可以从容器服务集群控制台获取(https://console.cloud.tencent.com/tke2/cluster)。
4702
4702
  */
4703
4703
  ClusterID: string;
4704
4704
  /**
@@ -4710,7 +4710,15 @@ export interface CreateClusterMaintenanceWindowAndExclusionsRequest {
4710
4710
  */
4711
4711
  Duration: number;
4712
4712
  /**
4713
- * 维护周期(一周中的哪几天)
4713
+ * 维护周期(一周中的哪几天),支持的参数值如下:
4714
+
4715
+ - MO:周一
4716
+ - TU:周二
4717
+ - WE:周三
4718
+ - TH:周四
4719
+ - FR:周五
4720
+ - SA:周六
4721
+ - SU:周日
4714
4722
  */
4715
4723
  DayOfWeek: Array<string>;
4716
4724
  /**
@@ -5429,7 +5437,15 @@ export interface ModifyClusterMaintenanceWindowAndExclusionsRequest {
5429
5437
  */
5430
5438
  Duration: number;
5431
5439
  /**
5432
- * 维护周期(一周中的哪几天)
5440
+ * 维护周期(一周中的哪几天),支持的参数值如下:
5441
+
5442
+ - MO:周一
5443
+ - TU:周二
5444
+ - WE:周三
5445
+ - TH:周四
5446
+ - FR:周五
5447
+ - SA:周六
5448
+ - SU:周日
5433
5449
  */
5434
5450
  DayOfWeek: Array<string>;
5435
5451
  /**
@@ -5514,6 +5530,10 @@ export interface UpgradePlan {
5514
5530
  * 集群名称
5515
5531
  */
5516
5532
  ClusterName?: string;
5533
+ /**
5534
+ * 集群地域
5535
+ */
5536
+ Region?: string;
5517
5537
  /**
5518
5538
  * 预计开始时间
5519
5539
  */
@@ -13985,11 +14005,13 @@ export interface DescribeClusterCommonNamesResponse {
13985
14005
  */
13986
14006
  export interface ModifyClusterRollOutSequenceTagsRequest {
13987
14007
  /**
13988
- * 集群ID
14008
+ * 集群ID,可以从容器服务集群控制台获取(https://console.cloud.tencent.com/tke2/cluster)。
13989
14009
  */
13990
14010
  ClusterID: string;
13991
14011
  /**
13992
- * 集群发布序列标签(为空时表示移除集群标签)
14012
+ * 集群发布序列标签(为空时表示移除集群标签)。支持以下集群标签:
14013
+ - 标签键:"Env",支持的标签值:["Test","Pre-Production","Production"]
14014
+ - 标签键:"Protection-Level",支持的标签值:["Low","Medium","High"]
13993
14015
  */
13994
14016
  Tags?: Array<Tag>;
13995
14017
  }