tencentcloud-sdk-nodejs 4.1.236 → 4.1.237

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.
@@ -2774,35 +2774,36 @@ export interface DescribePrometheusRecordRulesRequest {
2774
2774
  */
2775
2775
  export interface VirtualNodePool {
2776
2776
  /**
2777
- * 节点池ID
2777
+ * <p>节点池ID</p>
2778
2778
  */
2779
2779
  NodePoolId?: string;
2780
2780
  /**
2781
- * 子网列表
2781
+ * <p>子网列表</p>
2782
2782
  注意:此字段可能返回 null,表示取不到有效值。
2783
2783
  */
2784
2784
  SubnetIds?: Array<string>;
2785
2785
  /**
2786
- * 节点池名称
2786
+ * <p>节点池名称</p>
2787
2787
  */
2788
2788
  Name?: string;
2789
2789
  /**
2790
- * 节点池生命周期
2791
- - creating:创建中
2792
- - normal:正常
2793
- - updating:更新中
2790
+ * <p>节点池生命周期</p><ul><li>creating:创建中</li><li>normal:正常</li><li>updating:更新中</li></ul>
2794
2791
  */
2795
2792
  LifeState?: string;
2796
2793
  /**
2797
- * 虚拟节点label
2794
+ * <p>虚拟节点label</p>
2798
2795
  注意:此字段可能返回 null,表示取不到有效值。
2799
2796
  */
2800
2797
  Labels?: Array<Label>;
2801
2798
  /**
2802
- * 虚拟节点taint
2799
+ * <p>虚拟节点taint</p>
2803
2800
  注意:此字段可能返回 null,表示取不到有效值。
2804
2801
  */
2805
2802
  Taints?: Array<Taint>;
2803
+ /**
2804
+ * <p>子网分配策略</p>
2805
+ */
2806
+ SubnetAllocationPolicy?: SubnetAllocationPolicy;
2806
2807
  }
2807
2808
  /**
2808
2809
  * DescribeTKEEdgeClusterStatus请求参数结构体
@@ -5564,6 +5565,19 @@ export interface CreateEdgeCVMInstancesResponse {
5564
5565
  */
5565
5566
  RequestId?: string;
5566
5567
  }
5568
+ /**
5569
+ * 子网资源分配
5570
+ */
5571
+ export interface SubnetAllocation {
5572
+ /**
5573
+ * <p>子网 ID</p>
5574
+ */
5575
+ SubnetId: string;
5576
+ /**
5577
+ * <p>分配比例(百分比),所有 Ratio 之和必须等于 100</p>
5578
+ */
5579
+ Ratio: number;
5580
+ }
5567
5581
  /**
5568
5582
  * DescribeEdgeLogSwitches返回参数结构体
5569
5583
  */
@@ -8577,6 +8591,11 @@ export interface Cluster {
8577
8591
  * <p>集群是否启用高可用模式。用于指导跨可用区资源打散等高可用策略的执行</p>
8578
8592
  */
8579
8593
  IsHighAvailability?: boolean;
8594
+ /**
8595
+ * <p>集群分类:tke=标准TKE集群,agent=Agent集群</p><p>默认值:tke</p>
8596
+ 注意:此字段可能返回 null,表示取不到有效值。
8597
+ */
8598
+ ClusterCategory?: string;
8580
8599
  /**
8581
8600
  * <p>开启后会下发Gatekeeper和网络策略</p>
8582
8601
  */
@@ -11441,6 +11460,15 @@ export interface DeletePrometheusAlertPolicyResponse {
11441
11460
  */
11442
11461
  RequestId?: string;
11443
11462
  }
11463
+ /**
11464
+ * 子网资源分配策略,精确控制各子网之间的资源分配比例。
11465
+ */
11466
+ export interface SubnetAllocationPolicy {
11467
+ /**
11468
+ * <p>子网分配列表</p>
11469
+ */
11470
+ Allocations: Array<SubnetAllocation>;
11471
+ }
11444
11472
  /**
11445
11473
  * InstallEdgeLogAgent返回参数结构体
11446
11474
  */