tencentcloud-sdk-nodejs-tke 4.0.518 → 4.0.520

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.
@@ -52,6 +52,26 @@ export interface EksCiVolume {
52
52
  NfsVolumes?: Array<NfsVolume>
53
53
  }
54
54
 
55
+ /**
56
+ * GetTkeAppChartList请求参数结构体
57
+ */
58
+ export interface GetTkeAppChartListRequest {
59
+ /**
60
+ * app类型,取值log,scheduler,network,storage,monitor,dns,image,other,invisible
61
+ */
62
+ Kind?: string
63
+
64
+ /**
65
+ * app支持的操作系统,取值arm32、arm64、amd64
66
+ */
67
+ Arch?: string
68
+
69
+ /**
70
+ * 集群类型,取值tke、eks
71
+ */
72
+ ClusterType?: string
73
+ }
74
+
55
75
  /**
56
76
  * DescribeEdgeCVMInstances请求参数结构体
57
77
  */
@@ -287,23 +307,78 @@ export interface ServiceAccountAuthenticationOptions {
287
307
  }
288
308
 
289
309
  /**
290
- * DescribeEdgeClusterInstances返回参数结构体
310
+ * CreateClusterNodePool请求参数结构体
291
311
  */
292
- export interface DescribeEdgeClusterInstancesResponse {
312
+ export interface CreateClusterNodePoolRequest {
293
313
  /**
294
- * 该集群总数
314
+ * cluster id
295
315
  */
296
- TotalCount?: number
316
+ ClusterId: string
297
317
 
298
318
  /**
299
- * 节点信息集合
319
+ * AutoScalingGroupPara AS组参数,参考 https://cloud.tencent.com/document/product/377/20440
300
320
  */
301
- InstanceInfoSet?: string
321
+ AutoScalingGroupPara: string
302
322
 
303
323
  /**
304
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
324
+ * LaunchConfigurePara 运行参数,参考 https://cloud.tencent.com/document/product/377/20447
305
325
  */
306
- RequestId?: string
326
+ LaunchConfigurePara: string
327
+
328
+ /**
329
+ * InstanceAdvancedSettings 示例参数
330
+ */
331
+ InstanceAdvancedSettings: InstanceAdvancedSettings
332
+
333
+ /**
334
+ * 是否启用自动伸缩
335
+ */
336
+ EnableAutoscale: boolean
337
+
338
+ /**
339
+ * 节点池名称
340
+ */
341
+ Name?: string
342
+
343
+ /**
344
+ * Labels标签
345
+ */
346
+ Labels?: Array<Label>
347
+
348
+ /**
349
+ * Taints互斥
350
+ */
351
+ Taints?: Array<Taint>
352
+
353
+ /**
354
+ * 节点池纬度运行时类型及版本
355
+ */
356
+ ContainerRuntime?: string
357
+
358
+ /**
359
+ * 运行时版本
360
+ */
361
+ RuntimeVersion?: string
362
+
363
+ /**
364
+ * 节点池os,当为自定义镜像时,传镜像id;否则为公共镜像的osName
365
+ */
366
+ NodePoolOs?: string
367
+
368
+ /**
369
+ * 容器的镜像版本,"DOCKER_CUSTOMIZE"(容器定制版),"GENERAL"(普通版本,默认值)
370
+ */
371
+ OsCustomizeType?: string
372
+
373
+ /**
374
+ * 资源标签
375
+ */
376
+ Tags?: Array<Tag>
377
+
378
+ /**
379
+ * 删除保护开关
380
+ */
381
+ DeletionProtection?: boolean
307
382
  }
308
383
 
309
384
  /**
@@ -1351,6 +1426,26 @@ export interface ModifyPrometheusTemplateRequest {
1351
1426
  Template: PrometheusTemplateModify
1352
1427
  }
1353
1428
 
1429
+ /**
1430
+ * DeleteClusterVirtualNodePool请求参数结构体
1431
+ */
1432
+ export interface DeleteClusterVirtualNodePoolRequest {
1433
+ /**
1434
+ * 集群ID
1435
+ */
1436
+ ClusterId: string
1437
+
1438
+ /**
1439
+ * 虚拟节点池ID列表
1440
+ */
1441
+ NodePoolIds: Array<string>
1442
+
1443
+ /**
1444
+ * 是否强制删除,在虚拟节点上有pod的情况下,如果选择非强制删除,则删除会失败
1445
+ */
1446
+ Force?: boolean
1447
+ }
1448
+
1354
1449
  /**
1355
1450
  * DescribeImageCaches请求参数结构体
1356
1451
  */
@@ -2232,6 +2327,44 @@ export interface DescribePrometheusRecordRulesRequest {
2232
2327
  Filters?: Array<Filter>
2233
2328
  }
2234
2329
 
2330
+ /**
2331
+ * 虚拟节点池
2332
+ */
2333
+ export interface VirtualNodePool {
2334
+ /**
2335
+ * 节点池ID
2336
+ */
2337
+ NodePoolId: string
2338
+
2339
+ /**
2340
+ * 子网列表
2341
+ 注意:此字段可能返回 null,表示取不到有效值。
2342
+ */
2343
+ SubnetIds: Array<string>
2344
+
2345
+ /**
2346
+ * 节点池名称
2347
+ */
2348
+ Name: string
2349
+
2350
+ /**
2351
+ * 节点池生命周期
2352
+ */
2353
+ LifeState: string
2354
+
2355
+ /**
2356
+ * 虚拟节点label
2357
+ 注意:此字段可能返回 null,表示取不到有效值。
2358
+ */
2359
+ Labels: Array<Label>
2360
+
2361
+ /**
2362
+ * 虚拟节点taint
2363
+ 注意:此字段可能返回 null,表示取不到有效值。
2364
+ */
2365
+ Taints: Array<Taint>
2366
+ }
2367
+
2235
2368
  /**
2236
2369
  * DescribeTKEEdgeClusterStatus请求参数结构体
2237
2370
  */
@@ -2252,6 +2385,26 @@ export interface AcquireClusterAdminRoleResponse {
2252
2385
  RequestId?: string
2253
2386
  }
2254
2387
 
2388
+ /**
2389
+ * DescribeEdgeClusterInstances返回参数结构体
2390
+ */
2391
+ export interface DescribeEdgeClusterInstancesResponse {
2392
+ /**
2393
+ * 该集群总数
2394
+ */
2395
+ TotalCount?: number
2396
+
2397
+ /**
2398
+ * 节点信息集合
2399
+ */
2400
+ InstanceInfoSet?: string
2401
+
2402
+ /**
2403
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2404
+ */
2405
+ RequestId?: string
2406
+ }
2407
+
2255
2408
  /**
2256
2409
  * UpdateEdgeClusterVersion请求参数结构体
2257
2410
  */
@@ -2604,6 +2757,26 @@ export interface DeleteClusterEndpointRequest {
2604
2757
  IsExtranet?: boolean
2605
2758
  }
2606
2759
 
2760
+ /**
2761
+ * DeleteClusterVirtualNode请求参数结构体
2762
+ */
2763
+ export interface DeleteClusterVirtualNodeRequest {
2764
+ /**
2765
+ * 集群ID
2766
+ */
2767
+ ClusterId: string
2768
+
2769
+ /**
2770
+ * 虚拟节点列表
2771
+ */
2772
+ NodeNames: Array<string>
2773
+
2774
+ /**
2775
+ * 是否强制删除:如果虚拟节点上有运行中Pod,则非强制删除状态下不会进行删除
2776
+ */
2777
+ Force?: boolean
2778
+ }
2779
+
2607
2780
  /**
2608
2781
  * DescribeClusterNodePoolDetail请求参数结构体
2609
2782
  */
@@ -2630,18 +2803,31 @@ export interface DescribePrometheusTempSyncRequest {
2630
2803
  }
2631
2804
 
2632
2805
  /**
2633
- * DescribeClusters返回参数结构体
2806
+ * DescribePrometheusGlobalConfig返回参数结构体
2634
2807
  */
2635
- export interface DescribeClustersResponse {
2808
+ export interface DescribePrometheusGlobalConfigResponse {
2636
2809
  /**
2637
- * 集群总个数
2810
+ * 配置内容
2638
2811
  */
2639
- TotalCount: number
2812
+ Config: string
2640
2813
 
2641
2814
  /**
2642
- * 集群信息列表
2643
- */
2644
- Clusters: Array<Cluster>
2815
+ * ServiceMonitors列表以及对应targets信息
2816
+ 注意:此字段可能返回 null,表示取不到有效值。
2817
+ */
2818
+ ServiceMonitors: Array<PrometheusConfigItem>
2819
+
2820
+ /**
2821
+ * PodMonitors列表以及对应targets信息
2822
+ 注意:此字段可能返回 null,表示取不到有效值。
2823
+ */
2824
+ PodMonitors: Array<PrometheusConfigItem>
2825
+
2826
+ /**
2827
+ * RawJobs列表以及对应targets信息
2828
+ 注意:此字段可能返回 null,表示取不到有效值。
2829
+ */
2830
+ RawJobs: Array<PrometheusConfigItem>
2645
2831
 
2646
2832
  /**
2647
2833
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -3968,6 +4154,36 @@ export interface ResourceUsage {
3968
4154
  Details: Array<ResourceUsageDetail>
3969
4155
  }
3970
4156
 
4157
+ /**
4158
+ * CreateClusterVirtualNode请求参数结构体
4159
+ */
4160
+ export interface CreateClusterVirtualNodeRequest {
4161
+ /**
4162
+ * 集群ID
4163
+ */
4164
+ ClusterId: string
4165
+
4166
+ /**
4167
+ * 虚拟节点所属节点池
4168
+ */
4169
+ NodePoolId: string
4170
+
4171
+ /**
4172
+ * 虚拟节点所属子网
4173
+ */
4174
+ SubnetId?: string
4175
+
4176
+ /**
4177
+ * 虚拟节点子网ID列表,和参数SubnetId互斥
4178
+ */
4179
+ SubnetIds?: Array<string>
4180
+
4181
+ /**
4182
+ * 虚拟节点列表
4183
+ */
4184
+ VirtualNodes?: Array<VirtualNodeSpec>
4185
+ }
4186
+
3971
4187
  /**
3972
4188
  * DescribeTKEEdgeClusters请求参数结构体
3973
4189
  */
@@ -4480,32 +4696,29 @@ export interface DescribeEdgeClusterExtraArgsRequest {
4480
4696
  }
4481
4697
 
4482
4698
  /**
4483
- * DescribePrometheusGlobalConfig返回参数结构体
4699
+ * DescribeClusters返回参数结构体
4484
4700
  */
4485
- export interface DescribePrometheusGlobalConfigResponse {
4701
+ export interface DescribeClustersResponse {
4486
4702
  /**
4487
- * 配置内容
4703
+ * 集群总个数
4488
4704
  */
4489
- Config: string
4490
-
4491
- /**
4492
- * ServiceMonitors列表以及对应targets信息
4493
- 注意:此字段可能返回 null,表示取不到有效值。
4494
- */
4495
- ServiceMonitors: Array<PrometheusConfigItem>
4705
+ TotalCount: number
4496
4706
 
4497
4707
  /**
4498
- * PodMonitors列表以及对应targets信息
4499
- 注意:此字段可能返回 null,表示取不到有效值。
4500
- */
4501
- PodMonitors: Array<PrometheusConfigItem>
4708
+ * 集群信息列表
4709
+ */
4710
+ Clusters: Array<Cluster>
4502
4711
 
4503
4712
  /**
4504
- * RawJobs列表以及对应targets信息
4505
- 注意:此字段可能返回 null,表示取不到有效值。
4506
- */
4507
- RawJobs: Array<PrometheusConfigItem>
4713
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4714
+ */
4715
+ RequestId?: string
4716
+ }
4508
4717
 
4718
+ /**
4719
+ * DeleteClusterVirtualNode返回参数结构体
4720
+ */
4721
+ export interface DeleteClusterVirtualNodeResponse {
4509
4722
  /**
4510
4723
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4511
4724
  */
@@ -5550,11 +5763,21 @@ export interface CreateClusterInstancesResponse {
5550
5763
  }
5551
5764
 
5552
5765
  /**
5553
- * 节点升级过程中集群当前状态
5766
+ * ModifyClusterVirtualNodePool返回参数结构体
5554
5767
  */
5555
- export interface InstanceUpgradeClusterStatus {
5768
+ export interface ModifyClusterVirtualNodePoolResponse {
5556
5769
  /**
5557
- * pod总数
5770
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5771
+ */
5772
+ RequestId?: string
5773
+ }
5774
+
5775
+ /**
5776
+ * 节点升级过程中集群当前状态
5777
+ */
5778
+ export interface InstanceUpgradeClusterStatus {
5779
+ /**
5780
+ * pod总数
5558
5781
  */
5559
5782
  PodTotal: number
5560
5783
 
@@ -5580,43 +5803,18 @@ export interface DescribeClusterRoutesRequest {
5580
5803
  }
5581
5804
 
5582
5805
  /**
5583
- * ForwardTKEEdgeApplicationRequestV3请求参数结构体
5806
+ * DeleteECMInstances请求参数结构体
5584
5807
  */
5585
- export interface ForwardTKEEdgeApplicationRequestV3Request {
5586
- /**
5587
- * 请求集群addon的访问
5588
- */
5589
- Method: string
5590
-
5591
- /**
5592
- * 请求集群addon的路径
5593
- */
5594
- Path: string
5595
-
5596
- /**
5597
- * 请求集群addon后允许接收的数据格式
5598
- */
5599
- Accept?: string
5600
-
5601
- /**
5602
- * 请求集群addon的数据格式
5603
- */
5604
- ContentType?: string
5605
-
5606
- /**
5607
- * 请求集群addon的数据
5608
- */
5609
- RequestBody?: string
5610
-
5808
+ export interface DeleteECMInstancesRequest {
5611
5809
  /**
5612
- * 集群名称,例如cls-1234abcd
5810
+ * 集群ID
5613
5811
  */
5614
- ClusterName?: string
5812
+ ClusterID: string
5615
5813
 
5616
5814
  /**
5617
- * 是否编码请求内容
5815
+ * ecm id集合
5618
5816
  */
5619
- EncodedBody?: string
5817
+ EcmIdSet: Array<string>
5620
5818
  }
5621
5819
 
5622
5820
  /**
@@ -6357,6 +6555,16 @@ pending 还未开始
6357
6555
  Detail: Array<TaskStepInfo>
6358
6556
  }
6359
6557
 
6558
+ /**
6559
+ * DescribeClusterVirtualNodePools请求参数结构体
6560
+ */
6561
+ export interface DescribeClusterVirtualNodePoolsRequest {
6562
+ /**
6563
+ * 集群ID
6564
+ */
6565
+ ClusterId: string
6566
+ }
6567
+
6360
6568
  /**
6361
6569
  * GetMostSuitableImageCache请求参数结构体
6362
6570
  */
@@ -6453,6 +6661,26 @@ export interface DNSConfigOption {
6453
6661
  Value: string
6454
6662
  }
6455
6663
 
6664
+ /**
6665
+ * DescribeClusterVirtualNode请求参数结构体
6666
+ */
6667
+ export interface DescribeClusterVirtualNodeRequest {
6668
+ /**
6669
+ * 集群ID
6670
+ */
6671
+ ClusterId: string
6672
+
6673
+ /**
6674
+ * 节点池ID
6675
+ */
6676
+ NodePoolId?: string
6677
+
6678
+ /**
6679
+ * 节点名称
6680
+ */
6681
+ NodeNames?: Array<string>
6682
+ }
6683
+
6456
6684
  /**
6457
6685
  * DescribeClusterReleases返回参数结构体
6458
6686
  */
@@ -6562,6 +6790,32 @@ export interface UninstallClusterReleaseRequest {
6562
6790
  ClusterType?: string
6563
6791
  }
6564
6792
 
6793
+ /**
6794
+ * 虚拟节点
6795
+ */
6796
+ export interface VirtualNode {
6797
+ /**
6798
+ * 虚拟节点名称
6799
+ */
6800
+ Name: string
6801
+
6802
+ /**
6803
+ * 虚拟节点所属子网
6804
+ */
6805
+ SubnetId: string
6806
+
6807
+ /**
6808
+ * 虚拟节点状态
6809
+ */
6810
+ Phase: string
6811
+
6812
+ /**
6813
+ * 创建时间
6814
+ 注意:此字段可能返回 null,表示取不到有效值。
6815
+ */
6816
+ CreatedTime: string
6817
+ }
6818
+
6565
6819
  /**
6566
6820
  * ForwardTKEEdgeApplicationRequestV3返回参数结构体
6567
6821
  */
@@ -6577,6 +6831,53 @@ export interface ForwardTKEEdgeApplicationRequestV3Response {
6577
6831
  RequestId?: string
6578
6832
  }
6579
6833
 
6834
+ /**
6835
+ * CreateClusterVirtualNodePool请求参数结构体
6836
+ */
6837
+ export interface CreateClusterVirtualNodePoolRequest {
6838
+ /**
6839
+ * 集群Id
6840
+ */
6841
+ ClusterId: string
6842
+
6843
+ /**
6844
+ * 节点池名称
6845
+ */
6846
+ Name: string
6847
+
6848
+ /**
6849
+ * 子网ID列表
6850
+ */
6851
+ SubnetIds?: Array<string>
6852
+
6853
+ /**
6854
+ * 虚拟节点label
6855
+ */
6856
+ Labels?: Array<Label>
6857
+
6858
+ /**
6859
+ * 虚拟节点taint
6860
+ */
6861
+ Taints?: Array<Taint>
6862
+
6863
+ /**
6864
+ * 节点列表
6865
+ */
6866
+ VirtualNodes?: Array<VirtualNodeSpec>
6867
+
6868
+ /**
6869
+ * 删除保护开关
6870
+ */
6871
+ DeletionProtection?: boolean
6872
+
6873
+ /**
6874
+ * 节点池操作系统:
6875
+ - linux(默认)
6876
+ - windows
6877
+ */
6878
+ OS?: string
6879
+ }
6880
+
6580
6881
  /**
6581
6882
  * ModifyPrometheusConfig请求参数结构体
6582
6883
  */
@@ -6982,6 +7283,21 @@ export interface CreatePrometheusConfigRequest {
6982
7283
  RawJobs?: Array<PrometheusConfigItem>
6983
7284
  }
6984
7285
 
7286
+ /**
7287
+ * CreateClusterVirtualNode返回参数结构体
7288
+ */
7289
+ export interface CreateClusterVirtualNodeResponse {
7290
+ /**
7291
+ * 虚拟节点名称
7292
+ */
7293
+ NodeName: string
7294
+
7295
+ /**
7296
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7297
+ */
7298
+ RequestId?: string
7299
+ }
7300
+
6985
7301
  /**
6986
7302
  * 镜像缓存的事件
6987
7303
  */
@@ -7033,9 +7349,20 @@ export interface CreatePrometheusClusterAgentRequest {
7033
7349
  }
7034
7350
 
7035
7351
  /**
7036
- * DeleteEKSContainerInstances返回参数结构体
7352
+ * DescribeClusterNodePools返回参数结构体
7037
7353
  */
7038
- export interface DeleteEKSContainerInstancesResponse {
7354
+ export interface DescribeClusterNodePoolsResponse {
7355
+ /**
7356
+ * NodePools(节点池列表)
7357
+ 注意:此字段可能返回 null,表示取不到有效值。
7358
+ */
7359
+ NodePoolSet: Array<NodePool>
7360
+
7361
+ /**
7362
+ * 资源总数
7363
+ */
7364
+ TotalCount: number
7365
+
7039
7366
  /**
7040
7367
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7041
7368
  */
@@ -7093,6 +7420,21 @@ export interface RestartEKSContainerInstancesRequest {
7093
7420
  EksCiIds: Array<string>
7094
7421
  }
7095
7422
 
7423
+ /**
7424
+ * DrainClusterVirtualNode请求参数结构体
7425
+ */
7426
+ export interface DrainClusterVirtualNodeRequest {
7427
+ /**
7428
+ * 集群ID
7429
+ */
7430
+ ClusterId: string
7431
+
7432
+ /**
7433
+ * 节点名
7434
+ */
7435
+ NodeName: string
7436
+ }
7437
+
7096
7438
  /**
7097
7439
  * DescribeClusterLevelAttribute请求参数结构体
7098
7440
  */
@@ -7530,20 +7872,9 @@ export interface EnhancedService {
7530
7872
  }
7531
7873
 
7532
7874
  /**
7533
- * DescribeClusterNodePools返回参数结构体
7875
+ * DeleteEKSContainerInstances返回参数结构体
7534
7876
  */
7535
- export interface DescribeClusterNodePoolsResponse {
7536
- /**
7537
- * NodePools(节点池列表)
7538
- 注意:此字段可能返回 null,表示取不到有效值。
7539
- */
7540
- NodePoolSet: Array<NodePool>
7541
-
7542
- /**
7543
- * 资源总数
7544
- */
7545
- TotalCount: number
7546
-
7877
+ export interface DeleteEKSContainerInstancesResponse {
7547
7878
  /**
7548
7879
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7549
7880
  */
@@ -8050,23 +8381,23 @@ export interface CreatePrometheusAlertPolicyRequest {
8050
8381
  }
8051
8382
 
8052
8383
  /**
8053
- * GetTkeAppChartList请求参数结构体
8384
+ * DescribeImageCaches返回参数结构体
8054
8385
  */
8055
- export interface GetTkeAppChartListRequest {
8386
+ export interface DescribeImageCachesResponse {
8056
8387
  /**
8057
- * app类型,取值log,scheduler,network,storage,monitor,dns,image,other,invisible
8388
+ * 镜像缓存总数
8058
8389
  */
8059
- Kind?: string
8390
+ TotalCount: number
8060
8391
 
8061
8392
  /**
8062
- * app支持的操作系统,取值arm32、arm64、amd64
8393
+ * 镜像缓存信息列表
8063
8394
  */
8064
- Arch?: string
8395
+ ImageCaches: Array<ImageCache>
8065
8396
 
8066
8397
  /**
8067
- * 集群类型,取值tke、eks
8398
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
8068
8399
  */
8069
- ClusterType?: string
8400
+ RequestId?: string
8070
8401
  }
8071
8402
 
8072
8403
  /**
@@ -8085,78 +8416,25 @@ export interface ResourceUsageDetail {
8085
8416
  }
8086
8417
 
8087
8418
  /**
8088
- * CreateClusterNodePool请求参数结构体
8419
+ * DescribeClusterVirtualNodePools返回参数结构体
8089
8420
  */
8090
- export interface CreateClusterNodePoolRequest {
8091
- /**
8092
- * cluster id
8093
- */
8094
- ClusterId: string
8095
-
8096
- /**
8097
- * AutoScalingGroupPara AS组参数,参考 https://cloud.tencent.com/document/product/377/20440
8098
- */
8099
- AutoScalingGroupPara: string
8100
-
8101
- /**
8102
- * LaunchConfigurePara 运行参数,参考 https://cloud.tencent.com/document/product/377/20447
8103
- */
8104
- LaunchConfigurePara: string
8105
-
8106
- /**
8107
- * InstanceAdvancedSettings 示例参数
8108
- */
8109
- InstanceAdvancedSettings: InstanceAdvancedSettings
8110
-
8111
- /**
8112
- * 是否启用自动伸缩
8113
- */
8114
- EnableAutoscale: boolean
8115
-
8116
- /**
8117
- * 节点池名称
8118
- */
8119
- Name?: string
8120
-
8121
- /**
8122
- * Labels标签
8123
- */
8124
- Labels?: Array<Label>
8125
-
8126
- /**
8127
- * Taints互斥
8128
- */
8129
- Taints?: Array<Taint>
8130
-
8131
- /**
8132
- * 节点池纬度运行时类型及版本
8133
- */
8134
- ContainerRuntime?: string
8135
-
8136
- /**
8137
- * 运行时版本
8138
- */
8139
- RuntimeVersion?: string
8140
-
8141
- /**
8142
- * 节点池os,当为自定义镜像时,传镜像id;否则为公共镜像的osName
8143
- */
8144
- NodePoolOs?: string
8145
-
8421
+ export interface DescribeClusterVirtualNodePoolsResponse {
8146
8422
  /**
8147
- * 容器的镜像版本,"DOCKER_CUSTOMIZE"(容器定制版),"GENERAL"(普通版本,默认值)
8148
- */
8149
- OsCustomizeType?: string
8423
+ * 节点池总数
8424
+ 注意:此字段可能返回 null,表示取不到有效值。
8425
+ */
8426
+ TotalCount?: number
8150
8427
 
8151
8428
  /**
8152
- * 资源标签
8153
- */
8154
- Tags?: Array<Tag>
8429
+ * 虚拟节点池列表
8430
+ 注意:此字段可能返回 null,表示取不到有效值。
8431
+ */
8432
+ NodePoolSet?: Array<VirtualNodePool>
8155
8433
 
8156
8434
  /**
8157
- * 删除保护开关
8435
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
8158
8436
  */
8159
- DeletionProtection?: boolean
8437
+ RequestId?: string
8160
8438
  }
8161
8439
 
8162
8440
  /**
@@ -8322,26 +8600,6 @@ export interface DisableClusterDeletionProtectionRequest {
8322
8600
  ClusterId: string
8323
8601
  }
8324
8602
 
8325
- /**
8326
- * DescribeImageCaches返回参数结构体
8327
- */
8328
- export interface DescribeImageCachesResponse {
8329
- /**
8330
- * 镜像缓存总数
8331
- */
8332
- TotalCount: number
8333
-
8334
- /**
8335
- * 镜像缓存信息列表
8336
- */
8337
- ImageCaches: Array<ImageCache>
8338
-
8339
- /**
8340
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
8341
- */
8342
- RequestId?: string
8343
- }
8344
-
8345
8603
  /**
8346
8604
  * prometheus一个job的targets
8347
8605
  */
@@ -8626,18 +8884,43 @@ export interface ClusterAsGroupAttribute {
8626
8884
  }
8627
8885
 
8628
8886
  /**
8629
- * DeleteECMInstances请求参数结构体
8887
+ * ForwardTKEEdgeApplicationRequestV3请求参数结构体
8630
8888
  */
8631
- export interface DeleteECMInstancesRequest {
8889
+ export interface ForwardTKEEdgeApplicationRequestV3Request {
8632
8890
  /**
8633
- * 集群ID
8891
+ * 请求集群addon的访问
8634
8892
  */
8635
- ClusterID: string
8893
+ Method: string
8636
8894
 
8637
8895
  /**
8638
- * ecm id集合
8896
+ * 请求集群addon的路径
8639
8897
  */
8640
- EcmIdSet: Array<string>
8898
+ Path: string
8899
+
8900
+ /**
8901
+ * 请求集群addon后允许接收的数据格式
8902
+ */
8903
+ Accept?: string
8904
+
8905
+ /**
8906
+ * 请求集群addon的数据格式
8907
+ */
8908
+ ContentType?: string
8909
+
8910
+ /**
8911
+ * 请求集群addon的数据
8912
+ */
8913
+ RequestBody?: string
8914
+
8915
+ /**
8916
+ * 集群名称,例如cls-1234abcd
8917
+ */
8918
+ ClusterName?: string
8919
+
8920
+ /**
8921
+ * 是否编码请求内容
8922
+ */
8923
+ EncodedBody?: string
8641
8924
  }
8642
8925
 
8643
8926
  /**
@@ -9345,6 +9628,21 @@ export interface CreateTKEEdgeClusterRequest {
9345
9628
  RegistryPrefix?: string
9346
9629
  }
9347
9630
 
9631
+ /**
9632
+ * CreateClusterVirtualNodePool返回参数结构体
9633
+ */
9634
+ export interface CreateClusterVirtualNodePoolResponse {
9635
+ /**
9636
+ * 节点池ID
9637
+ */
9638
+ NodePoolId: string
9639
+
9640
+ /**
9641
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
9642
+ */
9643
+ RequestId?: string
9644
+ }
9645
+
9348
9646
  /**
9349
9647
  * CreateEKSCluster返回参数结构体
9350
9648
  */
@@ -9616,6 +9914,41 @@ export interface EnableEventPersistenceRequest {
9616
9914
  TopicId?: string
9617
9915
  }
9618
9916
 
9917
+ /**
9918
+ * ModifyClusterVirtualNodePool请求参数结构体
9919
+ */
9920
+ export interface ModifyClusterVirtualNodePoolRequest {
9921
+ /**
9922
+ * 集群ID
9923
+ */
9924
+ ClusterId: string
9925
+
9926
+ /**
9927
+ * 节点池ID
9928
+ */
9929
+ NodePoolId: string
9930
+
9931
+ /**
9932
+ * 节点池名称
9933
+ */
9934
+ Name?: string
9935
+
9936
+ /**
9937
+ * 虚拟节点label
9938
+ */
9939
+ Labels?: Array<Label>
9940
+
9941
+ /**
9942
+ * 虚拟节点taint
9943
+ */
9944
+ Taints?: Array<Taint>
9945
+
9946
+ /**
9947
+ * 删除保护开关
9948
+ */
9949
+ DeletionProtection?: boolean
9950
+ }
9951
+
9619
9952
  /**
9620
9953
  * DescribeRegions返回参数结构体
9621
9954
  */
@@ -9726,6 +10059,16 @@ export interface DescribeECMInstancesRequest {
9726
10059
  Filters?: Array<Filter>
9727
10060
  }
9728
10061
 
10062
+ /**
10063
+ * DrainClusterVirtualNode返回参数结构体
10064
+ */
10065
+ export interface DrainClusterVirtualNodeResponse {
10066
+ /**
10067
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10068
+ */
10069
+ RequestId?: string
10070
+ }
10071
+
9729
10072
  /**
9730
10073
  * DescribeVpcCniPodLimits返回参数结构体
9731
10074
  */
@@ -9848,6 +10191,21 @@ export interface PrometheusAlertRule {
9848
10191
  RuleState?: number
9849
10192
  }
9850
10193
 
10194
+ /**
10195
+ * 虚拟节点
10196
+ */
10197
+ export interface VirtualNodeSpec {
10198
+ /**
10199
+ * 节点展示名称
10200
+ */
10201
+ DisplayName: string
10202
+
10203
+ /**
10204
+ * 子网ID
10205
+ */
10206
+ SubnetId: string
10207
+ }
10208
+
9851
10209
  /**
9852
10210
  * 集群网络相关的参数
9853
10211
  */
@@ -9976,26 +10334,13 @@ export interface ClusterExtraArgs {
9976
10334
  }
9977
10335
 
9978
10336
  /**
9979
- * 边缘容器集群高级配置
10337
+ * DeleteClusterVirtualNodePool返回参数结构体
9980
10338
  */
9981
- export interface EdgeClusterAdvancedSettings {
9982
- /**
9983
- * 集群自定义参数
9984
- 注意:此字段可能返回 null,表示取不到有效值。
9985
- */
9986
- ExtraArgs?: EdgeClusterExtraArgs
9987
-
9988
- /**
9989
- * 运行时类型,支持"docker"和"containerd",默认为docker
9990
- 注意:此字段可能返回 null,表示取不到有效值。
9991
- */
9992
- Runtime?: string
9993
-
10339
+ export interface DeleteClusterVirtualNodePoolResponse {
9994
10340
  /**
9995
- * 集群kube-proxy转发模式,支持"iptables"和"ipvs",默认为iptables
9996
- 注意:此字段可能返回 null,表示取不到有效值。
9997
- */
9998
- ProxyMode?: string
10341
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10342
+ */
10343
+ RequestId?: string
9999
10344
  }
10000
10345
 
10001
10346
  /**
@@ -10729,6 +11074,29 @@ export interface ModifyPrometheusAgentExternalLabelsRequest {
10729
11074
  ExternalLabels: Array<Label>
10730
11075
  }
10731
11076
 
11077
+ /**
11078
+ * 边缘容器集群高级配置
11079
+ */
11080
+ export interface EdgeClusterAdvancedSettings {
11081
+ /**
11082
+ * 集群自定义参数
11083
+ 注意:此字段可能返回 null,表示取不到有效值。
11084
+ */
11085
+ ExtraArgs?: EdgeClusterExtraArgs
11086
+
11087
+ /**
11088
+ * 运行时类型,支持"docker"和"containerd",默认为docker
11089
+ 注意:此字段可能返回 null,表示取不到有效值。
11090
+ */
11091
+ Runtime?: string
11092
+
11093
+ /**
11094
+ * 集群kube-proxy转发模式,支持"iptables"和"ipvs",默认为iptables
11095
+ 注意:此字段可能返回 null,表示取不到有效值。
11096
+ */
11097
+ ProxyMode?: string
11098
+ }
11099
+
10732
11100
  /**
10733
11101
  * prometheus一个抓取目标的信息
10734
11102
  */
@@ -12064,6 +12432,28 @@ running = 运行中
12064
12432
  BoundNormal: number
12065
12433
  }
12066
12434
 
12435
+ /**
12436
+ * DescribeClusterVirtualNode返回参数结构体
12437
+ */
12438
+ export interface DescribeClusterVirtualNodeResponse {
12439
+ /**
12440
+ * 节点列表
12441
+ 注意:此字段可能返回 null,表示取不到有效值。
12442
+ */
12443
+ Nodes?: Array<VirtualNode>
12444
+
12445
+ /**
12446
+ * 节点总数
12447
+ 注意:此字段可能返回 null,表示取不到有效值。
12448
+ */
12449
+ TotalCount?: number
12450
+
12451
+ /**
12452
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
12453
+ */
12454
+ RequestId?: string
12455
+ }
12456
+
12067
12457
  /**
12068
12458
  * master节点缩容参数
12069
12459
  */