tencentcloud-sdk-nodejs-tke 4.0.698 → 4.0.699

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.
@@ -487,6 +487,42 @@ export interface DisableVpcCniNetworkTypeResponse {
487
487
  RequestId?: string
488
488
  }
489
489
 
490
+ /**
491
+ * 可被预留券抵扣的 Pod 某种规格的抵扣率
492
+ */
493
+ export interface PodDeductionRate {
494
+ /**
495
+ * Pod的 CPU
496
+ 注意:此字段可能返回 null,表示取不到有效值。
497
+ */
498
+ Cpu?: number
499
+ /**
500
+ * Pod 的内存
501
+ 注意:此字段可能返回 null,表示取不到有效值。
502
+ */
503
+ Memory?: number
504
+ /**
505
+ * Pod 的类型
506
+ 注意:此字段可能返回 null,表示取不到有效值。
507
+ */
508
+ Type?: string
509
+ /**
510
+ * Pod 的 GPU 卡数,Pod 类型为 GPU 时有效。
511
+ 注意:此字段可能返回 null,表示取不到有效值。
512
+ */
513
+ GpuNum?: string
514
+ /**
515
+ * 这种规格的 Pod总数
516
+ 注意:此字段可能返回 null,表示取不到有效值。
517
+ */
518
+ TotalNum?: number
519
+ /**
520
+ * 这种规格的 Pod被预留券抵扣的数量
521
+ 注意:此字段可能返回 null,表示取不到有效值。
522
+ */
523
+ DeductionNum?: number
524
+ }
525
+
490
526
  /**
491
527
  * DescribeClusterControllers返回参数结构体
492
528
  */
@@ -1617,6 +1653,20 @@ export interface ExistedInstance {
1617
1653
  IPv6Addresses: Array<string>
1618
1654
  }
1619
1655
 
1656
+ /**
1657
+ * CreateReservedInstances返回参数结构体
1658
+ */
1659
+ export interface CreateReservedInstancesResponse {
1660
+ /**
1661
+ * 预留券实例 ID。
1662
+ */
1663
+ ReservedInstanceIds?: Array<string>
1664
+ /**
1665
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1666
+ */
1667
+ RequestId?: string
1668
+ }
1669
+
1620
1670
  /**
1621
1671
  * AddNodeToNodePool返回参数结构体
1622
1672
  */
@@ -1627,6 +1677,20 @@ export interface AddNodeToNodePoolResponse {
1627
1677
  RequestId?: string
1628
1678
  }
1629
1679
 
1680
+ /**
1681
+ * DescribePostNodeResources请求参数结构体
1682
+ */
1683
+ export interface DescribePostNodeResourcesRequest {
1684
+ /**
1685
+ * 集群 ID
1686
+ */
1687
+ ClusterId: string
1688
+ /**
1689
+ * 节点名称
1690
+ */
1691
+ NodeName?: string
1692
+ }
1693
+
1630
1694
  /**
1631
1695
  * 托管prometheusV2实例概览
1632
1696
  */
@@ -1777,35 +1841,38 @@ export interface UpdateEKSContainerInstanceRequest {
1777
1841
  export interface CUDNN {
1778
1842
  /**
1779
1843
  * cuDNN的版本
1844
+ 注意:此字段可能返回 null,表示取不到有效值。
1780
1845
  */
1781
1846
  Version: string
1782
1847
  /**
1783
1848
  * cuDNN的名字
1849
+ 注意:此字段可能返回 null,表示取不到有效值。
1784
1850
  */
1785
1851
  Name: string
1786
1852
  /**
1787
1853
  * cuDNN的Doc名字
1854
+ 注意:此字段可能返回 null,表示取不到有效值。
1788
1855
  */
1789
1856
  DocName?: string
1790
1857
  /**
1791
1858
  * cuDNN的Dev名字
1859
+ 注意:此字段可能返回 null,表示取不到有效值。
1792
1860
  */
1793
1861
  DevName?: string
1794
1862
  }
1795
1863
 
1796
1864
  /**
1797
- * GetMostSuitableImageCache返回参数结构体
1865
+ * DescribeReservedInstances返回参数结构体
1798
1866
  */
1799
- export interface GetMostSuitableImageCacheResponse {
1867
+ export interface DescribeReservedInstancesResponse {
1800
1868
  /**
1801
- * 是否有匹配的镜像缓存
1869
+ * 总数。
1802
1870
  */
1803
- Found: boolean
1871
+ TotalCount?: number
1804
1872
  /**
1805
- * 匹配的镜像缓存
1806
- 注意:此字段可能返回 null,表示取不到有效值。
1873
+ * 预留实例列表。
1807
1874
  */
1808
- ImageCache: ImageCache
1875
+ ReservedInstanceSet?: Array<ReservedInstance>
1809
1876
  /**
1810
1877
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1811
1878
  */
@@ -3416,6 +3483,56 @@ export interface NfsVolume {
3416
3483
  ReadOnly?: boolean
3417
3484
  }
3418
3485
 
3486
+ /**
3487
+ * 预留券抵扣详情
3488
+ */
3489
+ export interface RIUtilizationDetail {
3490
+ /**
3491
+ * 预留券ID
3492
+ */
3493
+ ReservedInstanceId: string
3494
+ /**
3495
+ * Pod唯一ID
3496
+ */
3497
+ EksId: string
3498
+ /**
3499
+ * 集群ID
3500
+ */
3501
+ ClusterId: string
3502
+ /**
3503
+ * Pod的名称
3504
+ */
3505
+ Name: string
3506
+ /**
3507
+ * Pod的命名空间
3508
+ */
3509
+ Namespace: string
3510
+ /**
3511
+ * 工作负载类型
3512
+ */
3513
+ Kind: string
3514
+ /**
3515
+ * 工作负载名称
3516
+ */
3517
+ KindName: string
3518
+ /**
3519
+ * Pod的uid
3520
+ */
3521
+ Uid: string
3522
+ /**
3523
+ * 用量开始时间
3524
+ */
3525
+ StartTime: string
3526
+ /**
3527
+ * 用量结束时间
3528
+ */
3529
+ EndTime: string
3530
+ /**
3531
+ * 抵扣资源所属产品
3532
+ */
3533
+ Product: string
3534
+ }
3535
+
3419
3536
  /**
3420
3537
  * amp告警渠道配置
3421
3538
  */
@@ -3491,6 +3608,37 @@ webhook
3491
3608
  WebHook?: string
3492
3609
  }
3493
3610
 
3611
+ /**
3612
+ * DescribeRIUtilizationDetail请求参数结构体
3613
+ */
3614
+ export interface DescribeRIUtilizationDetailRequest {
3615
+ /**
3616
+ * 偏移量,默认0。
3617
+ */
3618
+ Offset?: number
3619
+ /**
3620
+ * 返回数量,默认为20,最大值为100。
3621
+ */
3622
+ Limit?: number
3623
+ /**
3624
+ * reserved-instance-id
3625
+ 按照**【预留实例ID**】进行过滤。预留实例ID形如:eksri-xxxxxxxx。
3626
+ 类型:String
3627
+ 必选:否
3628
+
3629
+ begin-time
3630
+ 按照**【抵扣开始时间**】进行过滤。形如:2023-06-28 15:27:40。
3631
+ 类型:String
3632
+ 必选:否
3633
+
3634
+ end-time
3635
+ 按照**【抵扣结束时间**】进行过滤。形如:2023-06-28 15:27:40。
3636
+ 类型:String
3637
+ 必选:否
3638
+ */
3639
+ Filters?: Array<Filter>
3640
+ }
3641
+
3494
3642
  /**
3495
3643
  * 集群创建过程
3496
3644
  */
@@ -3576,94 +3724,124 @@ export interface NodePool {
3576
3724
  /**
3577
3725
  * NodePoolId 资源池id
3578
3726
  */
3579
- NodePoolId: string
3727
+ NodePoolId?: string
3580
3728
  /**
3581
3729
  * Name 资源池名称
3582
3730
  */
3583
- Name: string
3731
+ Name?: string
3584
3732
  /**
3585
3733
  * ClusterInstanceId 集群实例id
3586
3734
  */
3587
- ClusterInstanceId: string
3735
+ ClusterInstanceId?: string
3588
3736
  /**
3589
3737
  * LifeState 状态,当前节点池生命周期状态包括:creating,normal,updating,deleting,deleted
3590
3738
  */
3591
- LifeState: string
3739
+ LifeState?: string
3592
3740
  /**
3593
3741
  * LaunchConfigurationId 配置
3594
3742
  */
3595
- LaunchConfigurationId: string
3743
+ LaunchConfigurationId?: string
3596
3744
  /**
3597
3745
  * AutoscalingGroupId 分组id
3598
3746
  */
3599
- AutoscalingGroupId: string
3747
+ AutoscalingGroupId?: string
3600
3748
  /**
3601
3749
  * Labels 标签
3602
3750
  */
3603
- Labels: Array<Label>
3751
+ Labels?: Array<Label>
3604
3752
  /**
3605
3753
  * Taints 污点标记
3606
3754
  */
3607
- Taints: Array<Taint>
3755
+ Taints?: Array<Taint>
3608
3756
  /**
3609
3757
  * NodeCountSummary 节点列表
3610
3758
  */
3611
- NodeCountSummary: NodeCountSummary
3759
+ NodeCountSummary?: NodeCountSummary
3612
3760
  /**
3613
3761
  * 状态信息
3614
3762
  注意:此字段可能返回 null,表示取不到有效值。
3615
3763
  */
3616
- AutoscalingGroupStatus: string
3764
+ AutoscalingGroupStatus?: string
3617
3765
  /**
3618
3766
  * 最大节点数量
3619
3767
  注意:此字段可能返回 null,表示取不到有效值。
3620
3768
  */
3621
- MaxNodesNum: number
3769
+ MaxNodesNum?: number
3622
3770
  /**
3623
3771
  * 最小节点数量
3624
3772
  注意:此字段可能返回 null,表示取不到有效值。
3625
3773
  */
3626
- MinNodesNum: number
3774
+ MinNodesNum?: number
3627
3775
  /**
3628
3776
  * 期望的节点数量
3629
3777
  注意:此字段可能返回 null,表示取不到有效值。
3630
3778
  */
3631
- DesiredNodesNum: number
3779
+ DesiredNodesNum?: number
3632
3780
  /**
3633
3781
  * 节点池osName
3634
3782
  注意:此字段可能返回 null,表示取不到有效值。
3635
3783
  */
3636
- NodePoolOs: string
3784
+ NodePoolOs?: string
3637
3785
  /**
3638
3786
  * 容器的镜像版本,"DOCKER_CUSTOMIZE"(容器定制版),"GENERAL"(普通版本,默认值)
3639
3787
  注意:此字段可能返回 null,表示取不到有效值。
3640
3788
  */
3641
- OsCustomizeType: string
3789
+ OsCustomizeType?: string
3642
3790
  /**
3643
3791
  * 镜像id
3644
3792
  注意:此字段可能返回 null,表示取不到有效值。
3645
3793
  */
3646
- ImageId: string
3794
+ ImageId?: string
3647
3795
  /**
3648
3796
  * 集群属于节点podCIDR大小自定义模式时,节点池需要带上pod数量属性
3649
3797
  注意:此字段可能返回 null,表示取不到有效值。
3650
3798
  */
3651
- DesiredPodNum: number
3799
+ DesiredPodNum?: number
3652
3800
  /**
3653
3801
  * 用户自定义脚本
3654
3802
  注意:此字段可能返回 null,表示取不到有效值。
3655
3803
  */
3656
- UserScript: string
3804
+ UserScript?: string
3657
3805
  /**
3658
3806
  * 资源标签
3659
3807
  注意:此字段可能返回 null,表示取不到有效值。
3660
3808
  */
3661
- Tags: Array<Tag>
3809
+ Tags?: Array<Tag>
3662
3810
  /**
3663
3811
  * 删除保护开关
3664
3812
  注意:此字段可能返回 null,表示取不到有效值。
3665
3813
  */
3666
- DeletionProtection: boolean
3814
+ DeletionProtection?: boolean
3815
+ /**
3816
+ * 节点配置
3817
+ 注意:此字段可能返回 null,表示取不到有效值。
3818
+ */
3819
+ ExtraArgs?: InstanceExtraArgs
3820
+ /**
3821
+ * GPU驱动相关参数
3822
+ 注意:此字段可能返回 null,表示取不到有效值。
3823
+ */
3824
+ GPUArgs?: GPUArgs
3825
+ /**
3826
+ * dockerd --graph 指定值, 默认为 /var/lib/docker
3827
+ 注意:此字段可能返回 null,表示取不到有效值。
3828
+ */
3829
+ DockerGraphPath?: string
3830
+ /**
3831
+ * 多盘数据盘挂载信息:新建节点时请确保购买CVM的参数传递了购买多个数据盘的信息,如CreateClusterInstances API的RunInstancesPara下的DataDisks也需要设置购买多个数据盘, 具体可以参考CreateClusterInstances接口的添加集群节点(多块数据盘)样例;添加已有节点时,请确保填写的分区信息在节点上真实存在
3832
+ 注意:此字段可能返回 null,表示取不到有效值。
3833
+ */
3834
+ DataDisks?: Array<DataDisk>
3835
+ /**
3836
+ * 是否不可调度
3837
+ 注意:此字段可能返回 null,表示取不到有效值。
3838
+ */
3839
+ Unschedulable?: number
3840
+ /**
3841
+ * 用户自定义脚本,在UserScript前执行
3842
+ 注意:此字段可能返回 null,表示取不到有效值。
3843
+ */
3844
+ PreStartUserScript?: string
3667
3845
  }
3668
3846
 
3669
3847
  /**
@@ -4052,6 +4230,20 @@ export interface DisableClusterAuditRequest {
4052
4230
  DeleteLogSetAndTopic?: boolean
4053
4231
  }
4054
4232
 
4233
+ /**
4234
+ * SyncPrometheusTemp请求参数结构体
4235
+ */
4236
+ export interface SyncPrometheusTempRequest {
4237
+ /**
4238
+ * 实例id
4239
+ */
4240
+ TemplateId: string
4241
+ /**
4242
+ * 同步目标
4243
+ */
4244
+ Targets: Array<PrometheusTemplateSyncTarget>
4245
+ }
4246
+
4055
4247
  /**
4056
4248
  * DeleteBackupStorageLocation返回参数结构体
4057
4249
  */
@@ -4273,6 +4465,20 @@ export interface RollbackClusterReleaseRequest {
4273
4465
  ClusterType?: string
4274
4466
  }
4275
4467
 
4468
+ /**
4469
+ * DescribePodDeductionRate返回参数结构体
4470
+ */
4471
+ export interface DescribePodDeductionRateResponse {
4472
+ /**
4473
+ * 各个规格的 可被预留券抵扣的Pod 抵扣率
4474
+ */
4475
+ PodDeductionRateSet?: Array<PodDeductionRate>
4476
+ /**
4477
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4478
+ */
4479
+ RequestId?: string
4480
+ }
4481
+
4276
4482
  /**
4277
4483
  * DeleteClusterInstances请求参数结构体
4278
4484
  */
@@ -4323,10 +4529,12 @@ export interface UpgradeNodeResetParam {
4323
4529
  export interface DriverVersion {
4324
4530
  /**
4325
4531
  * GPU驱动或者CUDA的版本
4532
+ 注意:此字段可能返回 null,表示取不到有效值。
4326
4533
  */
4327
4534
  Version: string
4328
4535
  /**
4329
4536
  * GPU驱动或者CUDA的名字
4537
+ 注意:此字段可能返回 null,表示取不到有效值。
4330
4538
  */
4331
4539
  Name: string
4332
4540
  }
@@ -4886,6 +5094,16 @@ export interface DescribeResourceUsageResponse {
4886
5094
  RequestId?: string
4887
5095
  }
4888
5096
 
5097
+ /**
5098
+ * RenewReservedInstances返回参数结构体
5099
+ */
5100
+ export interface RenewReservedInstancesResponse {
5101
+ /**
5102
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5103
+ */
5104
+ RequestId?: string
5105
+ }
5106
+
4889
5107
  /**
4890
5108
  * 边缘计算集群内网访问LB信息
4891
5109
  */
@@ -4902,6 +5120,28 @@ export interface EdgeClusterInternalLB {
4902
5120
  SubnetId?: Array<string>
4903
5121
  }
4904
5122
 
5123
+ /**
5124
+ * 预留券抵扣范围的描述信息,当抵扣范围为 Region 时,表示地域抵扣,其他参数不需要传;当抵扣范围为 Zone 时,表示可用区抵扣,Zone 参数必传;当抵扣范围为 Node 时,表示节点抵扣,参数 Zone、ClusterId和NodeName均必传。
5125
+ */
5126
+ export interface ReservedInstanceScope {
5127
+ /**
5128
+ * 抵扣范围,取值:Region、Zone 和 Node
5129
+ */
5130
+ Scope: string
5131
+ /**
5132
+ * 可用区
5133
+ */
5134
+ Zone?: string
5135
+ /**
5136
+ * 集群 ID
5137
+ */
5138
+ ClusterId?: string
5139
+ /**
5140
+ * 节点名称
5141
+ */
5142
+ NodeName?: string
5143
+ }
5144
+
4905
5145
  /**
4906
5146
  * DescribeAvailableClusterVersion请求参数结构体
4907
5147
  */
@@ -5028,6 +5268,27 @@ export interface DescribeEdgeLogSwitchesRequest {
5028
5268
  ClusterIds: Array<string>
5029
5269
  }
5030
5270
 
5271
+ /**
5272
+ * 边缘容器集群高级配置
5273
+ */
5274
+ export interface EdgeClusterAdvancedSettings {
5275
+ /**
5276
+ * 集群自定义参数
5277
+ 注意:此字段可能返回 null,表示取不到有效值。
5278
+ */
5279
+ ExtraArgs?: EdgeClusterExtraArgs
5280
+ /**
5281
+ * 运行时类型,支持"docker"和"containerd",默认为docker
5282
+ 注意:此字段可能返回 null,表示取不到有效值。
5283
+ */
5284
+ Runtime?: string
5285
+ /**
5286
+ * 集群kube-proxy转发模式,支持"iptables"和"ipvs",默认为iptables
5287
+ 注意:此字段可能返回 null,表示取不到有效值。
5288
+ */
5289
+ ProxyMode?: string
5290
+ }
5291
+
5031
5292
  /**
5032
5293
  * EnableEncryptionProtection返回参数结构体
5033
5294
  */
@@ -5486,6 +5747,37 @@ export interface ModifyClusterVirtualNodePoolResponse {
5486
5747
  RequestId?: string
5487
5748
  }
5488
5749
 
5750
+ /**
5751
+ * 超级节点上的资源统计
5752
+ */
5753
+ export interface SuperNodeResource {
5754
+ /**
5755
+ * 节点名称
5756
+ 注意:此字段可能返回 null,表示取不到有效值。
5757
+ */
5758
+ NodeName?: string
5759
+ /**
5760
+ * 节点上的资源总数
5761
+ 注意:此字段可能返回 null,表示取不到有效值。
5762
+ */
5763
+ Num?: number
5764
+ /**
5765
+ * 节点上的总核数
5766
+ 注意:此字段可能返回 null,表示取不到有效值。
5767
+ */
5768
+ Cpu?: number
5769
+ /**
5770
+ * 节点上的总内存数
5771
+ 注意:此字段可能返回 null,表示取不到有效值。
5772
+ */
5773
+ Memory?: number
5774
+ /**
5775
+ * 节点上的总 GPU 卡数
5776
+ 注意:此字段可能返回 null,表示取不到有效值。
5777
+ */
5778
+ Gpu?: number
5779
+ }
5780
+
5489
5781
  /**
5490
5782
  * 节点升级过程中集群当前状态
5491
5783
  */
@@ -6263,14 +6555,110 @@ export interface DescribePrometheusRecordRulesResponse {
6263
6555
  }
6264
6556
 
6265
6557
  /**
6266
- * GetMostSuitableImageCache请求参数结构体
6558
+ * 集群高级配置
6267
6559
  */
6268
- export interface GetMostSuitableImageCacheRequest {
6560
+ export interface ClusterAdvancedSettings {
6269
6561
  /**
6270
- * 容器镜像列表
6562
+ * 是否启用IPVS
6271
6563
  */
6272
- Images: Array<string>
6273
- }
6564
+ IPVS?: boolean
6565
+ /**
6566
+ * 是否启用集群节点自动扩缩容(创建集群流程不支持开启此功能)
6567
+ */
6568
+ AsEnabled?: boolean
6569
+ /**
6570
+ * 集群使用的runtime类型,包括"docker"和"containerd"两种类型,默认为"docker"
6571
+ */
6572
+ ContainerRuntime?: string
6573
+ /**
6574
+ * 集群中节点NodeName类型(包括 hostname,lan-ip两种形式,默认为lan-ip。如果开启了hostname模式,创建节点时需要设置HostName参数,并且InstanceName需要和HostName一致)
6575
+ */
6576
+ NodeNameType?: string
6577
+ /**
6578
+ * 集群自定义参数
6579
+ */
6580
+ ExtraArgs?: ClusterExtraArgs
6581
+ /**
6582
+ * 集群网络类型(包括GR(全局路由)和VPC-CNI两种模式,默认为GR。
6583
+ */
6584
+ NetworkType?: string
6585
+ /**
6586
+ * 集群VPC-CNI模式是否为非固定IP,默认: FALSE 固定IP。
6587
+ */
6588
+ IsNonStaticIpMode?: boolean
6589
+ /**
6590
+ * 是否启用集群删除保护
6591
+ */
6592
+ DeletionProtection?: boolean
6593
+ /**
6594
+ * 集群的网络代理模型,目前tke集群支持的网络代理模式有三种:iptables,ipvs,ipvs-bpf,此参数仅在使用ipvs-bpf模式时使用,三种网络模式的参数设置关系如下:
6595
+ iptables模式:IPVS和KubeProxyMode都不设置
6596
+ ipvs模式: 设置IPVS为true, KubeProxyMode不设置
6597
+ ipvs-bpf模式: 设置KubeProxyMode为kube-proxy-bpf
6598
+ 使用ipvs-bpf的网络模式需要满足以下条件:
6599
+ 1. 集群版本必须为1.14及以上;
6600
+ 2. 系统镜像必须是: Tencent Linux 2.4;
6601
+ */
6602
+ KubeProxyMode?: string
6603
+ /**
6604
+ * 是否开启审计开关
6605
+ */
6606
+ AuditEnabled?: boolean
6607
+ /**
6608
+ * 审计日志上传到的logset日志集
6609
+ */
6610
+ AuditLogsetId?: string
6611
+ /**
6612
+ * 审计日志上传到的topic
6613
+ */
6614
+ AuditLogTopicId?: string
6615
+ /**
6616
+ * 区分共享网卡多IP模式和独立网卡模式,共享网卡多 IP 模式填写"tke-route-eni",独立网卡模式填写"tke-direct-eni",默认为共享网卡模式
6617
+ */
6618
+ VpcCniType?: string
6619
+ /**
6620
+ * 运行时版本
6621
+ */
6622
+ RuntimeVersion?: string
6623
+ /**
6624
+ * 是否开节点podCIDR大小的自定义模式
6625
+ */
6626
+ EnableCustomizedPodCIDR?: boolean
6627
+ /**
6628
+ * 自定义模式下的基础pod数量
6629
+ */
6630
+ BasePodNumber?: number
6631
+ /**
6632
+ * 启用 CiliumMode 的模式,空值表示不启用,“clusterIP” 表示启用 Cilium 支持 ClusterIP
6633
+ */
6634
+ CiliumMode?: string
6635
+ /**
6636
+ * 集群VPC-CNI模式下是否是双栈集群,默认false,表明非双栈集群。
6637
+ */
6638
+ IsDualStack?: boolean
6639
+ /**
6640
+ * 是否开启QGPU共享
6641
+ */
6642
+ QGPUShareEnable?: boolean
6643
+ }
6644
+
6645
+ /**
6646
+ * DescribePodsBySpec返回参数结构体
6647
+ */
6648
+ export interface DescribePodsBySpecResponse {
6649
+ /**
6650
+ * Pod 总数
6651
+ */
6652
+ TotalCount?: number
6653
+ /**
6654
+ * Pod 节点信息
6655
+ */
6656
+ PodSet?: Array<PodNodeInfo>
6657
+ /**
6658
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6659
+ */
6660
+ RequestId?: string
6661
+ }
6274
6662
 
6275
6663
  /**
6276
6664
  * cloudrun安全特性
@@ -6420,6 +6808,32 @@ export interface AddNodeToNodePoolRequest {
6420
6808
  InstanceIds: Array<string>
6421
6809
  }
6422
6810
 
6811
+ /**
6812
+ * CreateReservedInstances请求参数结构体
6813
+ */
6814
+ export interface CreateReservedInstancesRequest {
6815
+ /**
6816
+ * 预留券实例规格。
6817
+ */
6818
+ ReservedInstanceSpec: ReservedInstanceSpec
6819
+ /**
6820
+ * 购买实例数量,一次最大购买数量为300。
6821
+ */
6822
+ InstanceCount: number
6823
+ /**
6824
+ * 预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月实例的购买时长、是否设置自动续费等属性。
6825
+ */
6826
+ InstanceChargePrepaid: InstanceChargePrepaid
6827
+ /**
6828
+ * 预留券名称。
6829
+ */
6830
+ InstanceName?: string
6831
+ /**
6832
+ * 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
6833
+ */
6834
+ ClientToken?: string
6835
+ }
6836
+
6423
6837
  /**
6424
6838
  * DescribeExternalClusterSpec请求参数结构体
6425
6839
  */
@@ -6470,6 +6884,16 @@ export interface UninstallClusterReleaseRequest {
6470
6884
  ClusterType?: string
6471
6885
  }
6472
6886
 
6887
+ /**
6888
+ * ModifyPrometheusTemp返回参数结构体
6889
+ */
6890
+ export interface ModifyPrometheusTempResponse {
6891
+ /**
6892
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6893
+ */
6894
+ RequestId?: string
6895
+ }
6896
+
6473
6897
  /**
6474
6898
  * 虚拟节点
6475
6899
  */
@@ -6493,6 +6917,37 @@ export interface VirtualNode {
6493
6917
  CreatedTime: string
6494
6918
  }
6495
6919
 
6920
+ /**
6921
+ * Pod所在的节点信息
6922
+ */
6923
+ export interface PodNodeInfo {
6924
+ /**
6925
+ * 集群 ID
6926
+ 注意:此字段可能返回 null,表示取不到有效值。
6927
+ */
6928
+ ClusterId?: string
6929
+ /**
6930
+ * 节点名称
6931
+ 注意:此字段可能返回 null,表示取不到有效值。
6932
+ */
6933
+ NodeName?: string
6934
+ /**
6935
+ * 可用区
6936
+ 注意:此字段可能返回 null,表示取不到有效值。
6937
+ */
6938
+ Zone?: string
6939
+ /**
6940
+ * 命名空间
6941
+ 注意:此字段可能返回 null,表示取不到有效值。
6942
+ */
6943
+ Namespace?: string
6944
+ /**
6945
+ * Pod 名称
6946
+ 注意:此字段可能返回 null,表示取不到有效值。
6947
+ */
6948
+ Name?: string
6949
+ }
6950
+
6496
6951
  /**
6497
6952
  * ForwardTKEEdgeApplicationRequestV3返回参数结构体
6498
6953
  */
@@ -6818,6 +7273,24 @@ export interface DeleteEKSClusterResponse {
6818
7273
  RequestId?: string
6819
7274
  }
6820
7275
 
7276
+ /**
7277
+ * RenewReservedInstances请求参数结构体
7278
+ */
7279
+ export interface RenewReservedInstancesRequest {
7280
+ /**
7281
+ * 预留券实例ID,每次请求实例的上限为100。
7282
+ */
7283
+ ReservedInstanceIds: Array<string>
7284
+ /**
7285
+ * 预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月实例的续费时长、是否设置自动续费等属性。
7286
+ */
7287
+ InstanceChargePrepaid: InstanceChargePrepaid
7288
+ /**
7289
+ * 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
7290
+ */
7291
+ ClientToken?: string
7292
+ }
7293
+
6821
7294
  /**
6822
7295
  * 版本信息
6823
7296
  */
@@ -7602,6 +8075,24 @@ export interface DescribeRouteTableConflictsResponse {
7602
8075
  RequestId?: string
7603
8076
  }
7604
8077
 
8078
+ /**
8079
+ * DescribePostNodeResources返回参数结构体
8080
+ */
8081
+ export interface DescribePostNodeResourcesResponse {
8082
+ /**
8083
+ * Pod详情
8084
+ */
8085
+ PodSet?: Array<SuperNodeResource>
8086
+ /**
8087
+ * 预留券详情
8088
+ */
8089
+ ReservedInstanceSet?: Array<SuperNodeResource>
8090
+ /**
8091
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
8092
+ */
8093
+ RequestId?: string
8094
+ }
8095
+
7605
8096
  /**
7606
8097
  * DescribePrometheusAlertRule请求参数结构体
7607
8098
  */
@@ -8434,17 +8925,22 @@ export interface ECMRunMonitorServiceEnabled {
8434
8925
  }
8435
8926
 
8436
8927
  /**
8437
- * SyncPrometheusTemp请求参数结构体
8928
+ * GetMostSuitableImageCache返回参数结构体
8438
8929
  */
8439
- export interface SyncPrometheusTempRequest {
8930
+ export interface GetMostSuitableImageCacheResponse {
8440
8931
  /**
8441
- * 实例id
8932
+ * 是否有匹配的镜像缓存
8442
8933
  */
8443
- TemplateId: string
8934
+ Found: boolean
8444
8935
  /**
8445
- * 同步目标
8936
+ * 匹配的镜像缓存
8937
+ 注意:此字段可能返回 null,表示取不到有效值。
8446
8938
  */
8447
- Targets: Array<PrometheusTemplateSyncTarget>
8939
+ ImageCache: ImageCache
8940
+ /**
8941
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
8942
+ */
8943
+ RequestId?: string
8448
8944
  }
8449
8945
 
8450
8946
  /**
@@ -8929,9 +9425,17 @@ export interface CreatePrometheusGlobalNotificationRequest {
8929
9425
  }
8930
9426
 
8931
9427
  /**
8932
- * ModifyPrometheusTemp返回参数结构体
9428
+ * DescribeRIUtilizationDetail返回参数结构体
8933
9429
  */
8934
- export interface ModifyPrometheusTempResponse {
9430
+ export interface DescribeRIUtilizationDetailResponse {
9431
+ /**
9432
+ * 总数。
9433
+ */
9434
+ TotalCount?: number
9435
+ /**
9436
+ * 详情。
9437
+ */
9438
+ RIUtilizationDetailSet?: Array<RIUtilizationDetail>
8935
9439
  /**
8936
9440
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
8937
9441
  */
@@ -9619,6 +10123,24 @@ export interface DrainClusterVirtualNodeResponse {
9619
10123
  RequestId?: string
9620
10124
  }
9621
10125
 
10126
+ /**
10127
+ * ECM实例可用区及对应的实例创建数目及运营商的组合
10128
+ */
10129
+ export interface ECMZoneInstanceCountISP {
10130
+ /**
10131
+ * 创建实例的可用区
10132
+ */
10133
+ Zone: string
10134
+ /**
10135
+ * 在当前可用区欲创建的实例数目
10136
+ */
10137
+ InstanceCount: number
10138
+ /**
10139
+ * 运营商
10140
+ */
10141
+ ISP: string
10142
+ }
10143
+
9622
10144
  /**
9623
10145
  * DescribeVpcCniPodLimits返回参数结构体
9624
10146
  */
@@ -9899,21 +10421,27 @@ failed: 步骤失败
9899
10421
  }
9900
10422
 
9901
10423
  /**
9902
- * ECM实例可用区及对应的实例创建数目及运营商的组合
10424
+ * DeletePrometheusAlertRule请求参数结构体
9903
10425
  */
9904
- export interface ECMZoneInstanceCountISP {
10426
+ export interface DeletePrometheusAlertRuleRequest {
9905
10427
  /**
9906
- * 创建实例的可用区
10428
+ * 实例id
9907
10429
  */
9908
- Zone: string
10430
+ InstanceId: string
9909
10431
  /**
9910
- * 在当前可用区欲创建的实例数目
10432
+ * 告警规则id列表
9911
10433
  */
9912
- InstanceCount: number
10434
+ AlertIds: Array<string>
10435
+ }
10436
+
10437
+ /**
10438
+ * ModifyReservedInstanceScope返回参数结构体
10439
+ */
10440
+ export interface ModifyReservedInstanceScopeResponse {
9913
10441
  /**
9914
- * 运营商
10442
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
9915
10443
  */
9916
- ISP: string
10444
+ RequestId?: string
9917
10445
  }
9918
10446
 
9919
10447
  /**
@@ -10234,6 +10762,16 @@ export interface UpdateClusterKubeconfigRequest {
10234
10762
  SubAccounts?: Array<string>
10235
10763
  }
10236
10764
 
10765
+ /**
10766
+ * DeleteReservedInstances请求参数结构体
10767
+ */
10768
+ export interface DeleteReservedInstancesRequest {
10769
+ /**
10770
+ * 预留券实例ID。
10771
+ */
10772
+ ReservedInstanceIds: Array<string>
10773
+ }
10774
+
10237
10775
  /**
10238
10776
  * DescribePrometheusGlobalConfig请求参数结构体
10239
10777
  */
@@ -10284,11 +10822,11 @@ export interface DescribeClusterNodePoolsResponse {
10284
10822
  * NodePools(节点池列表)
10285
10823
  注意:此字段可能返回 null,表示取不到有效值。
10286
10824
  */
10287
- NodePoolSet: Array<NodePool>
10825
+ NodePoolSet?: Array<NodePool>
10288
10826
  /**
10289
10827
  * 资源总数
10290
10828
  */
10291
- TotalCount: number
10829
+ TotalCount?: number
10292
10830
  /**
10293
10831
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10294
10832
  */
@@ -10380,6 +10918,76 @@ export interface ModifyNodePoolDesiredCapacityAboutAsgRequest {
10380
10918
  DesiredCapacity: number
10381
10919
  }
10382
10920
 
10921
+ /**
10922
+ * 预留实例
10923
+ */
10924
+ export interface ReservedInstance {
10925
+ /**
10926
+ * 预留实例ID
10927
+ */
10928
+ ReservedInstanceId: string
10929
+ /**
10930
+ * 预留实例名称
10931
+ */
10932
+ ReservedInstanceName: string
10933
+ /**
10934
+ * 预留券状态
10935
+ */
10936
+ Status: string
10937
+ /**
10938
+ * 有效期,单位:月
10939
+ */
10940
+ TimeSpan: number
10941
+ /**
10942
+ * 抵扣资源类型
10943
+ */
10944
+ ResourceType: string
10945
+ /**
10946
+ * 资源核数
10947
+ */
10948
+ Cpu: number
10949
+ /**
10950
+ * 资源内存,单位:Gi
10951
+ */
10952
+ Memory: number
10953
+ /**
10954
+ * 预留券的范围,默认值region。
10955
+ */
10956
+ Scope: string
10957
+ /**
10958
+ * 创建时间
10959
+ */
10960
+ CreatedAt: string
10961
+ /**
10962
+ * 生效时间
10963
+ */
10964
+ ActiveAt: string
10965
+ /**
10966
+ * 过期时间
10967
+ */
10968
+ ExpireAt: string
10969
+ /**
10970
+ * GPU卡数
10971
+ */
10972
+ GpuCount: string
10973
+ /**
10974
+ * 自动续费标记
10975
+ */
10976
+ AutoRenewFlag: number
10977
+ /**
10978
+ * 集群 ID
10979
+ */
10980
+ ClusterId?: string
10981
+ /**
10982
+ * 节点名称
10983
+ */
10984
+ NodeName?: string
10985
+ /**
10986
+ * 上个周期预留券的抵扣状态,Deduct、NotDeduct
10987
+ */
10988
+ DeductStatus?: string
10989
+ }
10990
+
10383
10991
  /**
10384
10992
  * DeleteClusterRoute返回参数结构体
10385
10993
  */
@@ -10582,24 +11190,13 @@ export interface ModifyPrometheusAgentExternalLabelsRequest {
10582
11190
  }
10583
11191
 
10584
11192
  /**
10585
- * 边缘容器集群高级配置
11193
+ * DeleteReservedInstances返回参数结构体
10586
11194
  */
10587
- export interface EdgeClusterAdvancedSettings {
10588
- /**
10589
- * 集群自定义参数
10590
- 注意:此字段可能返回 null,表示取不到有效值。
10591
- */
10592
- ExtraArgs?: EdgeClusterExtraArgs
10593
- /**
10594
- * 运行时类型,支持"docker"和"containerd",默认为docker
10595
- 注意:此字段可能返回 null,表示取不到有效值。
10596
- */
10597
- Runtime?: string
11195
+ export interface DeleteReservedInstancesResponse {
10598
11196
  /**
10599
- * 集群kube-proxy转发模式,支持"iptables"和"ipvs",默认为iptables
10600
- 注意:此字段可能返回 null,表示取不到有效值。
11197
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10601
11198
  */
10602
- ProxyMode?: string
11199
+ RequestId?: string
10603
11200
  }
10604
11201
 
10605
11202
  /**
@@ -10656,24 +11253,6 @@ export interface LoginSettings {
10656
11253
  KeepImageLogin?: string
10657
11254
  }
10658
11255
 
10659
- /**
10660
- * DescribePrometheusTemp返回参数结构体
10661
- */
10662
- export interface DescribePrometheusTempResponse {
10663
- /**
10664
- * 模板列表
10665
- */
10666
- Templates: Array<PrometheusTemp>
10667
- /**
10668
- * 总数
10669
- */
10670
- Total: number
10671
- /**
10672
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10673
- */
10674
- RequestId?: string
10675
- }
10676
-
10677
11256
  /**
10678
11257
  * SyncPrometheusTemplate请求参数结构体
10679
11258
  */
@@ -10909,6 +11488,24 @@ export interface DeletePrometheusTemplateResponse {
10909
11488
  RequestId?: string
10910
11489
  }
10911
11490
 
11491
+ /**
11492
+ * DescribePodDeductionRate请求参数结构体
11493
+ */
11494
+ export interface DescribePodDeductionRateRequest {
11495
+ /**
11496
+ * 可用区
11497
+ */
11498
+ Zone?: string
11499
+ /**
11500
+ * 集群 ID
11501
+ */
11502
+ ClusterId?: string
11503
+ /**
11504
+ * 节点名称
11505
+ */
11506
+ NodeName?: string
11507
+ }
11508
+
10912
11509
  /**
10913
11510
  * DescribeECMInstances返回参数结构体
10914
11511
  */
@@ -10938,17 +11535,21 @@ export interface DescribePrometheusInstanceRequest {
10938
11535
  }
10939
11536
 
10940
11537
  /**
10941
- * DeletePrometheusAlertRule请求参数结构体
11538
+ * DescribePrometheusTemp返回参数结构体
10942
11539
  */
10943
- export interface DeletePrometheusAlertRuleRequest {
11540
+ export interface DescribePrometheusTempResponse {
10944
11541
  /**
10945
- * 实例id
11542
+ * 模板列表
10946
11543
  */
10947
- InstanceId: string
11544
+ Templates: Array<PrometheusTemp>
10948
11545
  /**
10949
- * 告警规则id列表
11546
+ * 总数
10950
11547
  */
10951
- AlertIds: Array<string>
11548
+ Total: number
11549
+ /**
11550
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
11551
+ */
11552
+ RequestId?: string
10952
11553
  }
10953
11554
 
10954
11555
  /**
@@ -11031,6 +11632,28 @@ export interface DescribeEnableVpcCniProgressResponse {
11031
11632
  RequestId?: string
11032
11633
  }
11033
11634
 
11635
+ /**
11636
+ * 预留券规格
11637
+ */
11638
+ export interface ReservedInstanceSpec {
11639
+ /**
11640
+ * 资源类型:common、amd、v100、t4、a10\*gnv4、a10\*gnv4v、a10\*pnv4、windows-common、windows-amd,common表示通用类型。
11641
+ */
11642
+ Type: string
11643
+ /**
11644
+ * 核数
11645
+ */
11646
+ Cpu: number
11647
+ /**
11648
+ * 内存
11649
+ */
11650
+ Memory: number
11651
+ /**
11652
+ * GPU卡数,当Type为GPU类型时设置。
11653
+ */
11654
+ Gpu?: number
11655
+ }
11656
+
11034
11657
  /**
11035
11658
  * 托管prometheus agent概览
11036
11659
  */
@@ -11185,6 +11808,10 @@ export interface ModifyClusterNodePoolRequest {
11185
11808
  * dockerd --graph 指定值, 默认为 /var/lib/docker
11186
11809
  */
11187
11810
  DockerGraphPath?: string
11811
+ /**
11812
+ * base64编码后的自定义脚本
11813
+ */
11814
+ PreStartUserScript?: string
11188
11815
  }
11189
11816
 
11190
11817
  /**
@@ -11218,91 +11845,138 @@ export interface CreateClusterEndpointResponse {
11218
11845
  }
11219
11846
 
11220
11847
  /**
11221
- * 集群高级配置
11848
+ * DescribeReservedInstances请求参数结构体
11222
11849
  */
11223
- export interface ClusterAdvancedSettings {
11850
+ export interface DescribeReservedInstancesRequest {
11224
11851
  /**
11225
- * 是否启用IPVS
11226
- */
11227
- IPVS?: boolean
11228
- /**
11229
- * 是否启用集群节点自动扩缩容(创建集群流程不支持开启此功能)
11230
- */
11231
- AsEnabled?: boolean
11232
- /**
11233
- * 集群使用的runtime类型,包括"docker"和"containerd"两种类型,默认为"docker"
11234
- */
11235
- ContainerRuntime?: string
11236
- /**
11237
- * 集群中节点NodeName类型(包括 hostname,lan-ip两种形式,默认为lan-ip。如果开启了hostname模式,创建节点时需要设置HostName参数,并且InstanceName需要和HostName一致)
11852
+ * 偏移量,默认0。
11238
11853
  */
11239
- NodeNameType?: string
11240
- /**
11241
- * 集群自定义参数
11242
- */
11243
- ExtraArgs?: ClusterExtraArgs
11244
- /**
11245
- * 集群网络类型(包括GR(全局路由)和VPC-CNI两种模式,默认为GR。
11246
- */
11247
- NetworkType?: string
11854
+ Offset?: number
11248
11855
  /**
11249
- * 集群VPC-CNI模式是否为非固定IP,默认: FALSE 固定IP
11856
+ * 返回数量,默认为20,最大值为100
11250
11857
  */
11251
- IsNonStaticIpMode?: boolean
11858
+ Limit?: number
11252
11859
  /**
11253
- * 是否启用集群删除保护
11860
+ * status
11861
+ 按照**【状态**】进行过滤。状态:Creating、Active、Expired、Refunded。
11862
+ 类型:String
11863
+ 必选:否
11864
+
11865
+ resource-type
11866
+ 按照**【资源类型**】进行过滤。资源类型:common、amd、v100、t4、a10\*gnv4、a10\*gnv4v等,common表示通用类型。
11867
+ 类型:String
11868
+ 必选:否
11869
+
11870
+ cpu
11871
+ 按照**【核数**】进行过滤。
11872
+ 类型:String
11873
+ 必选:否
11874
+
11875
+ memory
11876
+ 按照**【内存**】进行过滤。
11877
+ 类型:String
11878
+ 必选:否
11879
+
11880
+ gpu
11881
+ 按照**【GPU卡数**】进行过滤,取值有0.25、0.5、1、2、4等。
11882
+ 类型:String
11883
+ 必选:否
11884
+
11885
+ cluster-id
11886
+ 按照**【集群ID**】进行过滤。
11887
+ 类型:String
11888
+ 必选:否
11889
+
11890
+ node-name
11891
+ 按照**【节点名称**】进行过滤。
11892
+ 类型:String
11893
+ 必选:否
11894
+
11895
+ scope
11896
+ 按照**【可用区**】进行过滤。比如:ap-guangzhou-2,为空字符串表示地域抵扣范围。如果只过滤可用区抵扣范围,需要同时将cluster-id、node-name设置为空字符串。
11897
+ 类型:String
11898
+ 必选:否
11899
+
11900
+ reserved-instance-id
11901
+ 按照**【预留实例ID**】进行过滤。预留实例ID形如:eksri-xxxxxxxx。
11902
+ 类型:String
11903
+ 必选:否
11904
+
11905
+ reserved-instance-name
11906
+ 按照**【预留实例名称**】进行过滤。
11907
+ 类型:String
11908
+ 必选:否
11909
+
11910
+ reserved-instance-deduct
11911
+ 按照**【上个周期抵扣的预留券**】进行过滤。Values可不设置。
11912
+ 必选:否
11913
+
11914
+ reserved-instance-not-deduct
11915
+ 按照**【上个周期未抵扣的预留券**】进行过滤。Values可不设置。
11916
+ 必选:否
11254
11917
  */
11255
- DeletionProtection?: boolean
11918
+ Filters?: Array<Filter>
11256
11919
  /**
11257
- * 集群的网络代理模型,目前tke集群支持的网络代理模式有三种:iptables,ipvs,ipvs-bpf,此参数仅在使用ipvs-bpf模式时使用,三种网络模式的参数设置关系如下:
11258
- iptables模式:IPVS和KubeProxyMode都不设置
11259
- ipvs模式: 设置IPVS为true, KubeProxyMode不设置
11260
- ipvs-bpf模式: 设置KubeProxyMode为kube-proxy-bpf
11261
- 使用ipvs-bpf的网络模式需要满足以下条件:
11262
- 1. 集群版本必须为1.14及以上;
11263
- 2. 系统镜像必须是: Tencent Linux 2.4;
11920
+ * 排序字段。支持CreatedAt、ActiveAt、ExpireAt。默认值CreatedAt。
11264
11921
  */
11265
- KubeProxyMode?: string
11922
+ OrderField?: string
11266
11923
  /**
11267
- * 是否开启审计开关
11924
+ * 排序方法。顺序:ASC,倒序:DESC。默认值DESC。
11268
11925
  */
11269
- AuditEnabled?: boolean
11926
+ OrderDirection?: string
11927
+ }
11928
+
11929
+ /**
11930
+ * DescribePodsBySpec请求参数结构体
11931
+ */
11932
+ export interface DescribePodsBySpecRequest {
11270
11933
  /**
11271
- * 审计日志上传到的logset日志集
11934
+ * 核数
11272
11935
  */
11273
- AuditLogsetId?: string
11936
+ Cpu: number
11274
11937
  /**
11275
- * 审计日志上传到的topic
11938
+ * 内存
11276
11939
  */
11277
- AuditLogTopicId?: string
11940
+ Memory: number
11278
11941
  /**
11279
- * 区分共享网卡多IP模式和独立网卡模式,共享网卡多 IP 模式填写"tke-route-eni",独立网卡模式填写"tke-direct-eni",默认为共享网卡模式
11942
+ * 卡数,有0.25、0.5、1、2、4等
11280
11943
  */
11281
- VpcCniType?: string
11944
+ GpuNum?: string
11282
11945
  /**
11283
- * 运行时版本
11946
+ * 可用区
11284
11947
  */
11285
- RuntimeVersion?: string
11948
+ Zone?: string
11286
11949
  /**
11287
- * 是否开节点podCIDR大小的自定义模式
11950
+ * 集群 ID
11288
11951
  */
11289
- EnableCustomizedPodCIDR?: boolean
11952
+ ClusterId?: string
11290
11953
  /**
11291
- * 自定义模式下的基础pod数量
11954
+ * 节点名称
11292
11955
  */
11293
- BasePodNumber?: number
11956
+ NodeName?: string
11294
11957
  /**
11295
- * 启用 CiliumMode 的模式,空值表示不启用,“clusterIP” 表示启用 Cilium 支持 ClusterIP
11958
+ * 偏移量,默认0。
11296
11959
  */
11297
- CiliumMode?: string
11960
+ Offset?: number
11298
11961
  /**
11299
- * 集群VPC-CNI模式下是否是双栈集群,默认false,表明非双栈集群。
11962
+ * 返回数量,默认为20,最大值为100。
11300
11963
  */
11301
- IsDualStack?: boolean
11964
+ Limit?: number
11302
11965
  /**
11303
- * 是否开启QGPU共享
11966
+ * pod-type
11967
+ 按照**【Pod 类型**】进行过滤。资源类型:intel、amd、v100、t4、a10\*gnv4、a10\*gnv4v等。
11968
+ 类型:String
11969
+ 必选:否
11970
+
11971
+ pod-deduct
11972
+ 按照**【上个周期抵扣的Pod**】进行过滤。Values可不设置。
11973
+ 必选:否
11974
+
11975
+ pod-not-deduct
11976
+ 按照**【上个周期未抵扣的Pod**】进行过滤。Values可不设置。
11977
+ 必选:否
11304
11978
  */
11305
- QGPUShareEnable?: boolean
11979
+ Filters?: Array<Filter>
11306
11980
  }
11307
11981
 
11308
11982
  /**
@@ -11758,6 +12432,16 @@ export interface DescribeAvailableClusterVersionResponse {
11758
12432
  RequestId?: string
11759
12433
  }
11760
12434
 
12435
+ /**
12436
+ * GetMostSuitableImageCache请求参数结构体
12437
+ */
12438
+ export interface GetMostSuitableImageCacheRequest {
12439
+ /**
12440
+ * 容器镜像列表
12441
+ */
12442
+ Images: Array<string>
12443
+ }
12444
+
11761
12445
  /**
11762
12446
  * DeleteEKSContainerInstances请求参数结构体
11763
12447
  */
@@ -11942,6 +12626,20 @@ export interface InstallAddonResponse {
11942
12626
  RequestId?: string
11943
12627
  }
11944
12628
 
12629
+ /**
12630
+ * ModifyReservedInstanceScope请求参数结构体
12631
+ */
12632
+ export interface ModifyReservedInstanceScopeRequest {
12633
+ /**
12634
+ * 预留券唯一 ID
12635
+ */
12636
+ ReservedInstanceIds: Array<string>
12637
+ /**
12638
+ * 预留券抵扣范围信息
12639
+ */
12640
+ ReservedInstanceScope: ReservedInstanceScope
12641
+ }
12642
+
11945
12643
  /**
11946
12644
  * DisableEncryptionProtection请求参数结构体
11947
12645
  */
@@ -12102,3 +12800,22 @@ export interface DescribeBackupStorageLocationsRequest {
12102
12800
  */
12103
12801
  Names?: Array<string>
12104
12802
  }
12803
+
12804
+ /**
12805
+ * 包年包月配置
12806
+ */
12807
+ export interface InstanceChargePrepaid {
12808
+ /**
12809
+ * 购买实例的时长,单位:月。取值范围:1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 24, 36, 48, 60。
12810
+ */
12811
+ Period: number
12812
+ /**
12813
+ * 自动续费标识。取值范围:
12814
+ NOTIFY_AND_AUTO_RENEW:通知过期且自动续费
12815
+ NOTIFY_AND_MANUAL_RENEW:通知过期不自动续费
12816
+ DISABLE_NOTIFY_AND_MANUAL_RENEW:不通知过期不自动续费
12817
+
12818
+ 默认取值:NOTIFY_AND_MANUAL_RENEW。若该参数指定为NOTIFY_AND_AUTO_RENEW,在账户余额充足的情况下,实例到期后将按月自动续费。
12819
+ */
12820
+ RenewFlag?: string
12821
+ }