tencentcloud-sdk-nodejs 4.1.195 → 4.1.196

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.
Files changed (41) hide show
  1. package/es/common/sdk_version.js +1 -1
  2. package/es/services/ess/v20201111/ess_client.js +8 -2
  3. package/es/services/iotexplorer/v20190423/iotexplorer_client.js +9 -0
  4. package/es/services/tcb/v20180608/tcb_client.js +10 -4
  5. package/es/services/tione/v20211111/tione_client.js +41 -8
  6. package/es/services/tke/v20180525/tke_client.js +27 -0
  7. package/package.json +1 -1
  8. package/tencentcloud/common/sdk_version.d.ts +1 -1
  9. package/tencentcloud/common/sdk_version.js +1 -1
  10. package/tencentcloud/services/ai3d/v20250513/ai3d_models.d.ts +19 -16
  11. package/tencentcloud/services/cls/v20201016/cls_client.d.ts +1 -1
  12. package/tencentcloud/services/cls/v20201016/cls_client.js +1 -1
  13. package/tencentcloud/services/cls/v20201016/cls_models.d.ts +95 -117
  14. package/tencentcloud/services/ess/v20201111/ess_client.d.ts +35 -12
  15. package/tencentcloud/services/ess/v20201111/ess_client.js +40 -13
  16. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +116 -0
  17. package/tencentcloud/services/gs/v20191118/gs_models.d.ts +4 -0
  18. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.d.ts +13 -1
  19. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.js +18 -0
  20. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +195 -20
  21. package/tencentcloud/services/monitor/v20180724/monitor_client.d.ts +1 -1
  22. package/tencentcloud/services/monitor/v20180724/monitor_client.js +1 -1
  23. package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +2 -2
  24. package/tencentcloud/services/rum/v20210622/rum_models.d.ts +12 -11
  25. package/tencentcloud/services/tcb/v20180608/tcb_client.d.ts +39 -29
  26. package/tencentcloud/services/tcb/v20180608/tcb_client.js +44 -30
  27. package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +412 -31
  28. package/tencentcloud/services/tione/v20211111/tione_client.d.ts +53 -9
  29. package/tencentcloud/services/tione/v20211111/tione_client.js +78 -12
  30. package/tencentcloud/services/tione/v20211111/tione_models.d.ts +651 -127
  31. package/tencentcloud/services/tiw/v20190919/tiw_client.d.ts +1 -1
  32. package/tencentcloud/services/tiw/v20190919/tiw_client.js +1 -1
  33. package/tencentcloud/services/tiw/v20190919/tiw_models.d.ts +13 -79
  34. package/tencentcloud/services/tke/v20180525/tke_client.d.ts +37 -1
  35. package/tencentcloud/services/tke/v20180525/tke_client.js +54 -0
  36. package/tencentcloud/services/tke/v20180525/tke_models.d.ts +590 -176
  37. package/tencentcloud/services/trabbit/v20230418/trabbit_models.d.ts +58 -38
  38. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +12 -16
  39. package/tencentcloud/services/wedata/v20210820/wedata_client.d.ts +1 -1
  40. package/tencentcloud/services/wedata/v20210820/wedata_client.js +1 -1
  41. package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +17 -12
@@ -179,13 +179,21 @@ export interface SubnetInfos {
179
179
  Arch?: string;
180
180
  }
181
181
  /**
182
- * ModifyClusterImage返回参数结构体
182
+ * DeleteExternalNodePool请求参数结构体
183
183
  */
184
- export interface ModifyClusterImageResponse {
184
+ export interface DeleteExternalNodePoolRequest {
185
185
  /**
186
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
186
+ * 集群ID
187
187
  */
188
- RequestId?: string;
188
+ ClusterId: string;
189
+ /**
190
+ * 第三方节点池ID列表
191
+ */
192
+ NodePoolIds: Array<string>;
193
+ /**
194
+ * 是否强制删除,在第三方节点上有pod的情况下,如果选择非强制删除,则删除会失败
195
+ */
196
+ Force?: boolean;
189
197
  }
190
198
  /**
191
199
  * EKS Instance CBS volume
@@ -1574,6 +1582,130 @@ export interface DeleteClusterNodePoolRequest {
1574
1582
  */
1575
1583
  KeepInstance: boolean;
1576
1584
  }
1585
+ /**
1586
+ * CreateExternalNodePool请求参数结构体
1587
+ */
1588
+ export interface CreateExternalNodePoolRequest {
1589
+ /**
1590
+ * 集群Id
1591
+ */
1592
+ ClusterId: string;
1593
+ /**
1594
+ * 节点池名称
1595
+ */
1596
+ Name: string;
1597
+ /**
1598
+ * 运行时
1599
+ */
1600
+ ContainerRuntime: string;
1601
+ /**
1602
+ * 运行时版本
1603
+ */
1604
+ RuntimeVersion: string;
1605
+ /**
1606
+ * 第三方节点label
1607
+ */
1608
+ Labels?: Array<Label>;
1609
+ /**
1610
+ * 第三方节点taint
1611
+ */
1612
+ Taints?: Array<Taint>;
1613
+ /**
1614
+ * 第三方节点高级设置
1615
+ */
1616
+ InstanceAdvancedSettings?: InstanceAdvancedSettings;
1617
+ /**
1618
+ * 删除保护开关
1619
+ */
1620
+ DeletionProtection?: boolean;
1621
+ /**
1622
+ * 节点类型
1623
+ */
1624
+ NodeType?: string;
1625
+ }
1626
+ /**
1627
+ * ModifyClusterImage返回参数结构体
1628
+ */
1629
+ export interface ModifyClusterImageResponse {
1630
+ /**
1631
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1632
+ */
1633
+ RequestId?: string;
1634
+ }
1635
+ /**
1636
+ * amp告警渠道配置
1637
+ */
1638
+ export interface PrometheusNotification {
1639
+ /**
1640
+ * 是否启用
1641
+ */
1642
+ Enabled: boolean;
1643
+ /**
1644
+ * 收敛时间
1645
+ */
1646
+ RepeatInterval: string;
1647
+ /**
1648
+ * 生效起始时间
1649
+ */
1650
+ TimeRangeStart: string;
1651
+ /**
1652
+ * 生效结束时间
1653
+ */
1654
+ TimeRangeEnd: string;
1655
+ /**
1656
+ * 告警通知方式。目前有SMS、EMAIL、CALL、WECHAT方式。
1657
+ 分别代表:短信、邮件、电话、微信
1658
+ 注意:此字段可能返回 null,表示取不到有效值。
1659
+ */
1660
+ NotifyWay?: Array<string>;
1661
+ /**
1662
+ * 告警接收组(用户组)
1663
+ 注意:此字段可能返回 null,表示取不到有效值。
1664
+ */
1665
+ ReceiverGroups?: Array<number | bigint>;
1666
+ /**
1667
+ * 电话告警顺序。
1668
+ 注:NotifyWay选择CALL,采用该参数。
1669
+ 注意:此字段可能返回 null,表示取不到有效值。
1670
+ */
1671
+ PhoneNotifyOrder?: Array<number | bigint>;
1672
+ /**
1673
+ * 电话告警次数。
1674
+ 注:NotifyWay选择CALL,采用该参数。
1675
+ 注意:此字段可能返回 null,表示取不到有效值。
1676
+ */
1677
+ PhoneCircleTimes?: number;
1678
+ /**
1679
+ * 电话告警轮内间隔。单位:秒
1680
+ 注:NotifyWay选择CALL,采用该参数。
1681
+ 注意:此字段可能返回 null,表示取不到有效值。
1682
+ */
1683
+ PhoneInnerInterval?: number;
1684
+ /**
1685
+ * 电话告警轮外间隔。单位:秒
1686
+ 注:NotifyWay选择CALL,采用该参数。
1687
+ 注意:此字段可能返回 null,表示取不到有效值。
1688
+ */
1689
+ PhoneCircleInterval?: number;
1690
+ /**
1691
+ * 电话告警触达通知
1692
+ 注:NotifyWay选择CALL,采用该参数。
1693
+ 注意:此字段可能返回 null,表示取不到有效值。
1694
+ */
1695
+ PhoneArriveNotice?: boolean;
1696
+ /**
1697
+ * 通道类型,默认为amp,支持以下
1698
+ amp
1699
+ webhook
1700
+ 注意:此字段可能返回 null,表示取不到有效值。
1701
+ */
1702
+ Type?: string;
1703
+ /**
1704
+ * 如果Type为webhook, 则该字段为必填项
1705
+ 注意:此字段可能返回 null,表示取不到有效值。
1706
+ */
1707
+ WebHook?: string;
1708
+ }
1577
1709
  /**
1578
1710
  * DescribeEKSClusterCredential返回参数结构体
1579
1711
  */
@@ -2129,6 +2261,28 @@ export interface DescribeEdgeAvailableExtraArgsResponse {
2129
2261
  */
2130
2262
  RequestId?: string;
2131
2263
  }
2264
+ /**
2265
+ * 开启第三方节点池支持配置信息
2266
+ */
2267
+ export interface ClusterExternalConfig {
2268
+ /**
2269
+ * 集群网络插件类型,支持:Flannel、CiliumBGP、CiliumVXLan
2270
+ */
2271
+ NetworkType: string;
2272
+ /**
2273
+ * 子网ID
2274
+ */
2275
+ SubnetId: string;
2276
+ /**
2277
+ * Pod CIDR
2278
+ 注意:此字段可能返回 null,表示取不到有效值。
2279
+ */
2280
+ ClusterCIDR?: string;
2281
+ /**
2282
+ * 是否开启第三方节点池支持
2283
+ */
2284
+ Enabled?: boolean;
2285
+ }
2132
2286
  /**
2133
2287
  * CreatePrometheusRecordRuleYaml请求参数结构体
2134
2288
  */
@@ -2778,6 +2932,15 @@ export interface UpgradeClusterInstancesResponse {
2778
2932
  */
2779
2933
  RequestId?: string;
2780
2934
  }
2935
+ /**
2936
+ * EnableExternalNodeSupport返回参数结构体
2937
+ */
2938
+ export interface EnableExternalNodeSupportResponse {
2939
+ /**
2940
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2941
+ */
2942
+ RequestId?: string;
2943
+ }
2781
2944
  /**
2782
2945
  * 自定义驱动信息
2783
2946
  */
@@ -2810,6 +2973,43 @@ export interface DescribePrometheusAgentInstancesResponse {
2810
2973
  */
2811
2974
  RequestId?: string;
2812
2975
  }
2976
+ /**
2977
+ * 与云监控融合托管prometheus实例,关联集群基础信息
2978
+ */
2979
+ export interface PrometheusClusterAgentBasic {
2980
+ /**
2981
+ * 地域
2982
+ */
2983
+ Region: string;
2984
+ /**
2985
+ * 集群类型
2986
+ */
2987
+ ClusterType: string;
2988
+ /**
2989
+ * 集群ID
2990
+ */
2991
+ ClusterId: string;
2992
+ /**
2993
+ * 是否开启公网CLB
2994
+ */
2995
+ EnableExternal: boolean;
2996
+ /**
2997
+ * 集群内部署组件的pod配置
2998
+ */
2999
+ InClusterPodConfig?: PrometheusClusterAgentPodConfig;
3000
+ /**
3001
+ * 该集群采集的所有指标都会带上这些labels
3002
+ */
3003
+ ExternalLabels?: Array<Label>;
3004
+ /**
3005
+ * 是否安装默认采集配置
3006
+ */
3007
+ NotInstallBasicScrape?: boolean;
3008
+ /**
3009
+ * 是否采集指标,true代表drop所有指标,false代表采集默认指标
3010
+ */
3011
+ NotScrape?: boolean;
3012
+ }
2813
3013
  /**
2814
3014
  * AddExistedInstances请求参数结构体
2815
3015
  */
@@ -2975,6 +3175,19 @@ export type DescribeClusterRouteTablesRequest = null;
2975
3175
  * DescribeRegions请求参数结构体
2976
3176
  */
2977
3177
  export type DescribeRegionsRequest = null;
3178
+ /**
3179
+ * DescribeRollOutSequences请求参数结构体
3180
+ */
3181
+ export interface DescribeRollOutSequencesRequest {
3182
+ /**
3183
+ * 偏移量,默认为0
3184
+ */
3185
+ Offset?: number;
3186
+ /**
3187
+ * 最大输出条目数,默认为20
3188
+ */
3189
+ Limit?: number;
3190
+ }
2978
3191
  /**
2979
3192
  * DeleteClusterRoute请求参数结构体
2980
3193
  */
@@ -3054,28 +3267,17 @@ export interface DescribePrometheusTempSyncRequest {
3054
3267
  TemplateId: string;
3055
3268
  }
3056
3269
  /**
3057
- * DescribePrometheusGlobalConfig返回参数结构体
3270
+ * DescribePrometheusClusterAgents返回参数结构体
3058
3271
  */
3059
- export interface DescribePrometheusGlobalConfigResponse {
3060
- /**
3061
- * 配置内容
3062
- */
3063
- Config?: string;
3064
- /**
3065
- * ServiceMonitors列表以及对应targets信息
3066
- 注意:此字段可能返回 null,表示取不到有效值。
3067
- */
3068
- ServiceMonitors?: Array<PrometheusConfigItem>;
3272
+ export interface DescribePrometheusClusterAgentsResponse {
3069
3273
  /**
3070
- * PodMonitors列表以及对应targets信息
3071
- 注意:此字段可能返回 null,表示取不到有效值。
3274
+ * 被关联集群信息
3072
3275
  */
3073
- PodMonitors?: Array<PrometheusConfigItem>;
3276
+ Agents?: Array<PrometheusAgentOverview>;
3074
3277
  /**
3075
- * RawJobs列表以及对应targets信息
3076
- 注意:此字段可能返回 null,表示取不到有效值。
3278
+ * 被关联集群总量
3077
3279
  */
3078
- RawJobs?: Array<PrometheusConfigItem>;
3280
+ Total?: number;
3079
3281
  /**
3080
3282
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3081
3283
  */
@@ -3221,6 +3423,47 @@ export interface DescribeClusterAsGroupOptionResponse {
3221
3423
  */
3222
3424
  RequestId?: string;
3223
3425
  }
3426
+ /**
3427
+ * 第三方节点
3428
+ */
3429
+ export interface ExternalNode {
3430
+ /**
3431
+ * 第三方节点名称
3432
+ */
3433
+ Name: string;
3434
+ /**
3435
+ * 第三方节点所属节点池
3436
+ 注意:此字段可能返回 null,表示取不到有效值。
3437
+ */
3438
+ NodePoolId: string;
3439
+ /**
3440
+ * 第三方IP地址
3441
+ */
3442
+ IP: string;
3443
+ /**
3444
+ * 第三方地域
3445
+ */
3446
+ Location: string;
3447
+ /**
3448
+ * 第三方节点状态
3449
+ */
3450
+ Status: string;
3451
+ /**
3452
+ * 创建时间
3453
+ 注意:此字段可能返回 null,表示取不到有效值。
3454
+ */
3455
+ CreatedTime: string;
3456
+ /**
3457
+ * 异常原因
3458
+ 注意:此字段可能返回 null,表示取不到有效值。
3459
+ */
3460
+ Reason: string;
3461
+ /**
3462
+ * 是否封锁。true表示已封锁,false表示未封锁
3463
+ 注意:此字段可能返回 null,表示取不到有效值。
3464
+ */
3465
+ Unschedulable: boolean;
3466
+ }
3224
3467
  /**
3225
3468
  * CreateTKEEdgeCluster返回参数结构体
3226
3469
  */
@@ -3786,78 +4029,23 @@ export interface DescribeBatchModifyTagsStatusResponse {
3786
4029
  RequestId?: string;
3787
4030
  }
3788
4031
  /**
3789
- * amp告警渠道配置
4032
+ * DescribeExternalNode返回参数结构体
3790
4033
  */
3791
- export interface PrometheusNotification {
3792
- /**
3793
- * 是否启用
3794
- */
3795
- Enabled: boolean;
3796
- /**
3797
- * 收敛时间
3798
- */
3799
- RepeatInterval: string;
3800
- /**
3801
- * 生效起始时间
3802
- */
3803
- TimeRangeStart: string;
3804
- /**
3805
- * 生效结束时间
3806
- */
3807
- TimeRangeEnd: string;
3808
- /**
3809
- * 告警通知方式。目前有SMS、EMAIL、CALL、WECHAT方式。
3810
- 分别代表:短信、邮件、电话、微信
3811
- 注意:此字段可能返回 null,表示取不到有效值。
3812
- */
3813
- NotifyWay?: Array<string>;
4034
+ export interface DescribeExternalNodeResponse {
3814
4035
  /**
3815
- * 告警接收组(用户组)
3816
- 注意:此字段可能返回 null,表示取不到有效值。
3817
- */
3818
- ReceiverGroups?: Array<number | bigint>;
3819
- /**
3820
- * 电话告警顺序。
3821
- 注:NotifyWay选择CALL,采用该参数。
3822
- 注意:此字段可能返回 null,表示取不到有效值。
3823
- */
3824
- PhoneNotifyOrder?: Array<number | bigint>;
3825
- /**
3826
- * 电话告警次数。
3827
- 注:NotifyWay选择CALL,采用该参数。
3828
- 注意:此字段可能返回 null,表示取不到有效值。
3829
- */
3830
- PhoneCircleTimes?: number;
3831
- /**
3832
- * 电话告警轮内间隔。单位:秒
3833
- 注:NotifyWay选择CALL,采用该参数。
3834
- 注意:此字段可能返回 null,表示取不到有效值。
3835
- */
3836
- PhoneInnerInterval?: number;
3837
- /**
3838
- * 电话告警轮外间隔。单位:秒
3839
- 注:NotifyWay选择CALL,采用该参数。
3840
- 注意:此字段可能返回 null,表示取不到有效值。
3841
- */
3842
- PhoneCircleInterval?: number;
3843
- /**
3844
- * 电话告警触达通知
3845
- 注:NotifyWay选择CALL,采用该参数。
4036
+ * 节点列表
3846
4037
  注意:此字段可能返回 null,表示取不到有效值。
3847
4038
  */
3848
- PhoneArriveNotice?: boolean;
4039
+ Nodes: Array<ExternalNode>;
3849
4040
  /**
3850
- * 通道类型,默认为amp,支持以下
3851
- amp
3852
- webhook
4041
+ * 节点总数
3853
4042
  注意:此字段可能返回 null,表示取不到有效值。
3854
4043
  */
3855
- Type?: string;
4044
+ TotalCount: number;
3856
4045
  /**
3857
- * 如果Type为webhook, 则该字段为必填项
3858
- 注意:此字段可能返回 null,表示取不到有效值。
4046
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3859
4047
  */
3860
- WebHook?: string;
4048
+ RequestId?: string;
3861
4049
  }
3862
4050
  /**
3863
4051
  * CreateGlobalMaintenanceWindowAndExclusions返回参数结构体
@@ -3979,6 +4167,19 @@ export interface DeleteClusterMaintenanceWindowAndExclusionRequest {
3979
4167
  */
3980
4168
  ClusterID: string;
3981
4169
  }
4170
+ /**
4171
+ * UpdateEKSContainerInstance返回参数结构体
4172
+ */
4173
+ export interface UpdateEKSContainerInstanceResponse {
4174
+ /**
4175
+ * 容器实例 ID
4176
+ */
4177
+ EksCiId?: string;
4178
+ /**
4179
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4180
+ */
4181
+ RequestId?: string;
4182
+ }
3982
4183
  /**
3983
4184
  * DescribeEKSClusters返回参数结构体
3984
4185
  */
@@ -4427,21 +4628,25 @@ export interface HttpGet {
4427
4628
  Scheme: string;
4428
4629
  }
4429
4630
  /**
4430
- * 集群资源使用量
4631
+ * DescribeExternalNodeScript返回参数结构体
4431
4632
  */
4432
- export interface ResourceUsage {
4633
+ export interface DescribeExternalNodeScriptResponse {
4433
4634
  /**
4434
- * 资源类型,参考k8s 官方资源
4635
+ * 添加脚本cos下载链接
4435
4636
  */
4436
- Name?: string;
4637
+ Link?: string;
4437
4638
  /**
4438
- * 资源使用量,单位:个数
4639
+ * cos临时密钥
4439
4640
  */
4440
- Usage?: number;
4641
+ Token?: string;
4441
4642
  /**
4442
- * 资源使用详情
4643
+ * 添加脚本下载命令
4443
4644
  */
4444
- Details?: Array<ResourceUsageDetail>;
4645
+ Command?: string;
4646
+ /**
4647
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4648
+ */
4649
+ RequestId?: string;
4445
4650
  }
4446
4651
  /**
4447
4652
  * ModifyClusterAttribute返回参数结构体
@@ -4824,6 +5029,19 @@ export interface CancelUpgradePlanResponse {
4824
5029
  */
4825
5030
  RequestId?: string;
4826
5031
  }
5032
+ /**
5033
+ * DrainExternalNode请求参数结构体
5034
+ */
5035
+ export interface DrainExternalNodeRequest {
5036
+ /**
5037
+ * 集群ID
5038
+ */
5039
+ ClusterId: string;
5040
+ /**
5041
+ * 节点名
5042
+ */
5043
+ Name: string;
5044
+ }
4827
5045
  /**
4828
5046
  * 集群容器网络相关参数
4829
5047
  */
@@ -4994,6 +5212,34 @@ export interface DescribeOSImagesResponse {
4994
5212
  */
4995
5213
  RequestId?: string;
4996
5214
  }
5215
+ /**
5216
+ * DescribePrometheusGlobalConfig返回参数结构体
5217
+ */
5218
+ export interface DescribePrometheusGlobalConfigResponse {
5219
+ /**
5220
+ * 配置内容
5221
+ */
5222
+ Config?: string;
5223
+ /**
5224
+ * ServiceMonitors列表以及对应targets信息
5225
+ 注意:此字段可能返回 null,表示取不到有效值。
5226
+ */
5227
+ ServiceMonitors?: Array<PrometheusConfigItem>;
5228
+ /**
5229
+ * PodMonitors列表以及对应targets信息
5230
+ 注意:此字段可能返回 null,表示取不到有效值。
5231
+ */
5232
+ PodMonitors?: Array<PrometheusConfigItem>;
5233
+ /**
5234
+ * RawJobs列表以及对应targets信息
5235
+ 注意:此字段可能返回 null,表示取不到有效值。
5236
+ */
5237
+ RawJobs?: Array<PrometheusConfigItem>;
5238
+ /**
5239
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5240
+ */
5241
+ RequestId?: string;
5242
+ }
4997
5243
  /**
4998
5244
  * CreateCluster请求参数结构体
4999
5245
  */
@@ -5124,17 +5370,17 @@ export interface DescribeEdgeClusterExtraArgsRequest {
5124
5370
  ClusterId: string;
5125
5371
  }
5126
5372
  /**
5127
- * DescribePrometheusClusterAgents返回参数结构体
5373
+ * DescribeClusters返回参数结构体
5128
5374
  */
5129
- export interface DescribePrometheusClusterAgentsResponse {
5375
+ export interface DescribeClustersResponse {
5130
5376
  /**
5131
- * 被关联集群信息
5377
+ * 集群总个数
5132
5378
  */
5133
- Agents?: Array<PrometheusAgentOverview>;
5379
+ TotalCount?: number;
5134
5380
  /**
5135
- * 被关联集群总量
5381
+ * 集群信息列表
5136
5382
  */
5137
- Total?: number;
5383
+ Clusters?: Array<Cluster>;
5138
5384
  /**
5139
5385
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5140
5386
  */
@@ -5223,17 +5469,37 @@ export interface DescribePrometheusTemplatesResponse {
5223
5469
  RequestId?: string;
5224
5470
  }
5225
5471
  /**
5226
- * UpdateEKSContainerInstance返回参数结构体
5472
+ * ModifyExternalNodePool请求参数结构体
5227
5473
  */
5228
- export interface UpdateEKSContainerInstanceResponse {
5474
+ export interface ModifyExternalNodePoolRequest {
5475
+ /**
5476
+ * 集群ID
5477
+ */
5478
+ ClusterId: string;
5479
+ /**
5480
+ * 节点池ID
5481
+ */
5482
+ NodePoolId: string;
5483
+ /**
5484
+ * 节点池名称
5485
+ */
5486
+ Name?: string;
5487
+ /**
5488
+ * 第三方节点label
5489
+ */
5490
+ Labels?: Array<Label>;
5229
5491
  /**
5230
- * 容器实例 ID
5492
+ * 第三方节点taint
5231
5493
  */
5232
- EksCiId?: string;
5494
+ Taints?: Array<Taint>;
5233
5495
  /**
5234
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5496
+ * 删除保护开关
5235
5497
  */
5236
- RequestId?: string;
5498
+ DeletionProtection?: boolean;
5499
+ /**
5500
+ * base64 编码的用户脚本, 此脚本会在 k8s 组件运行后执行, 需要用户保证脚本的可重入及重试逻辑, 脚本及其生成的日志文件可在节点的 /data/ccs_userscript/ 路径查看
5501
+ */
5502
+ UserScript?: string;
5237
5503
  }
5238
5504
  /**
5239
5505
  * Eks 自定义域名服务器 配置
@@ -5393,6 +5659,15 @@ export interface RenewReservedInstancesResponse {
5393
5659
  */
5394
5660
  RequestId?: string;
5395
5661
  }
5662
+ /**
5663
+ * DescribeExternalNodePools请求参数结构体
5664
+ */
5665
+ export interface DescribeExternalNodePoolsRequest {
5666
+ /**
5667
+ * 集群ID
5668
+ */
5669
+ ClusterId: string;
5670
+ }
5396
5671
  /**
5397
5672
  * 边缘计算集群内网访问LB信息
5398
5673
  */
@@ -5495,6 +5770,15 @@ export interface DisableControlPlaneLogsResponse {
5495
5770
  */
5496
5771
  RequestId?: string;
5497
5772
  }
5773
+ /**
5774
+ * ModifyExternalNodePool返回参数结构体
5775
+ */
5776
+ export interface ModifyExternalNodePoolResponse {
5777
+ /**
5778
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5779
+ */
5780
+ RequestId?: string;
5781
+ }
5498
5782
  /**
5499
5783
  * DescribePrometheusAlertPolicy请求参数结构体
5500
5784
  */
@@ -5809,6 +6093,19 @@ export interface DescribeClusterEndpointStatusResponse {
5809
6093
  */
5810
6094
  RequestId?: string;
5811
6095
  }
6096
+ /**
6097
+ * EnableExternalNodeSupport请求参数结构体
6098
+ */
6099
+ export interface EnableExternalNodeSupportRequest {
6100
+ /**
6101
+ * 集群Id
6102
+ */
6103
+ ClusterId: string;
6104
+ /**
6105
+ * 开启第三方节点池支持配置信息
6106
+ */
6107
+ ClusterExternalConfig: ClusterExternalConfig;
6108
+ }
5812
6109
  /**
5813
6110
  * 描述了 “云自动化助手” 服务相关的信息
5814
6111
  */
@@ -6794,6 +7091,31 @@ export interface EipAttribute {
6794
7091
  */
6795
7092
  InternetMaxBandwidthOut?: number;
6796
7093
  }
7094
+ /**
7095
+ * DescribeExternalNodeScript请求参数结构体
7096
+ */
7097
+ export interface DescribeExternalNodeScriptRequest {
7098
+ /**
7099
+ * 集群ID
7100
+ */
7101
+ ClusterId: string;
7102
+ /**
7103
+ * 节点池ID
7104
+ */
7105
+ NodePoolId: string;
7106
+ /**
7107
+ * 网卡名
7108
+ */
7109
+ Interface?: string;
7110
+ /**
7111
+ * 节点名称
7112
+ */
7113
+ Name?: string;
7114
+ /**
7115
+ * 是否内网获取节点初始化脚本
7116
+ */
7117
+ Internal?: boolean;
7118
+ }
6797
7119
  /**
6798
7120
  * UpdateAddon返回参数结构体
6799
7121
  */
@@ -6853,6 +7175,23 @@ export interface DescribeClusterControllersRequest {
6853
7175
  */
6854
7176
  ClusterId: string;
6855
7177
  }
7178
+ /**
7179
+ * DescribeExternalNode请求参数结构体
7180
+ */
7181
+ export interface DescribeExternalNodeRequest {
7182
+ /**
7183
+ * 集群ID
7184
+ */
7185
+ ClusterId: string;
7186
+ /**
7187
+ * 节点池ID
7188
+ */
7189
+ NodePoolId?: string;
7190
+ /**
7191
+ * 节点名称
7192
+ */
7193
+ Names?: Array<string>;
7194
+ }
6856
7195
  /**
6857
7196
  * ModifyPrometheusAlertRule请求参数结构体
6858
7197
  */
@@ -9382,32 +9721,13 @@ export interface DescribePrometheusInstanceResponse {
9382
9721
  RequestId?: string;
9383
9722
  }
9384
9723
  /**
9385
- * 托管prometheus中grafana的信息
9724
+ * DeleteExternalNodePool返回参数结构体
9386
9725
  */
9387
- export interface PrometheusGrafanaInfo {
9388
- /**
9389
- * 是否启用
9390
- */
9391
- Enabled?: boolean;
9392
- /**
9393
- * 域名,只有开启外网访问才有效果
9394
- */
9395
- Domain?: string;
9396
- /**
9397
- * 内网地址,或者外网地址
9398
- */
9399
- Address?: string;
9400
- /**
9401
- * 是否开启了外网访问
9402
- close = 未开启外网访问
9403
- opening = 正在开启外网访问
9404
- open = 已开启外网访问
9405
- */
9406
- Internet?: string;
9726
+ export interface DeleteExternalNodePoolResponse {
9407
9727
  /**
9408
- * grafana管理员用户名
9728
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9409
9729
  */
9410
- AdminUser?: string;
9730
+ RequestId?: string;
9411
9731
  }
9412
9732
  /**
9413
9733
  * 集群日志开关集合
@@ -9601,6 +9921,15 @@ export interface DescribePrometheusClusterAgentsRequest {
9601
9921
  */
9602
9922
  Limit?: number;
9603
9923
  }
9924
+ /**
9925
+ * DeleteExternalNode返回参数结构体
9926
+ */
9927
+ export interface DeleteExternalNodeResponse {
9928
+ /**
9929
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9930
+ */
9931
+ RequestId?: string;
9932
+ }
9604
9933
  /**
9605
9934
  * DescribeTKEEdgeExternalKubeconfig返回参数结构体
9606
9935
  */
@@ -9844,41 +10173,21 @@ export interface Task {
9844
10173
  TaskID?: string;
9845
10174
  }
9846
10175
  /**
9847
- * 与云监控融合托管prometheus实例,关联集群基础信息
10176
+ * DeleteExternalNode请求参数结构体
9848
10177
  */
9849
- export interface PrometheusClusterAgentBasic {
9850
- /**
9851
- * 地域
9852
- */
9853
- Region: string;
9854
- /**
9855
- * 集群类型
9856
- */
9857
- ClusterType: string;
10178
+ export interface DeleteExternalNodeRequest {
9858
10179
  /**
9859
10180
  * 集群ID
9860
10181
  */
9861
10182
  ClusterId: string;
9862
10183
  /**
9863
- * 是否开启公网CLB
9864
- */
9865
- EnableExternal: boolean;
9866
- /**
9867
- * 集群内部署组件的pod配置
9868
- */
9869
- InClusterPodConfig?: PrometheusClusterAgentPodConfig;
9870
- /**
9871
- * 该集群采集的所有指标都会带上这些labels
9872
- */
9873
- ExternalLabels?: Array<Label>;
9874
- /**
9875
- * 是否安装默认采集配置
10184
+ * 第三方节点列表
9876
10185
  */
9877
- NotInstallBasicScrape?: boolean;
10186
+ Names: Array<string>;
9878
10187
  /**
9879
- * 是否采集指标,true代表drop所有指标,false代表采集默认指标
10188
+ * 是否强制删除:如果第三方节点上有运行中Pod,则非强制删除状态下不会进行删除
9880
10189
  */
9881
- NotScrape?: boolean;
10190
+ Force?: boolean;
9882
10191
  }
9883
10192
  /**
9884
10193
  * DeleteTKEEdgeCluster返回参数结构体
@@ -12279,17 +12588,17 @@ export interface DescribePrometheusRecordRulesResponse {
12279
12588
  RequestId?: string;
12280
12589
  }
12281
12590
  /**
12282
- * DescribeRollOutSequences请求参数结构体
12591
+ * CreateExternalNodePool返回参数结构体
12283
12592
  */
12284
- export interface DescribeRollOutSequencesRequest {
12593
+ export interface CreateExternalNodePoolResponse {
12285
12594
  /**
12286
- * 偏移量,默认为0
12595
+ * 节点池ID
12287
12596
  */
12288
- Offset?: number;
12597
+ NodePoolId?: string;
12289
12598
  /**
12290
- * 最大输出条目数,默认为20
12599
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12291
12600
  */
12292
- Limit?: number;
12601
+ RequestId?: string;
12293
12602
  }
12294
12603
  /**
12295
12604
  * ModifyNodePoolDesiredCapacityAboutAsg请求参数结构体
@@ -12735,6 +13044,23 @@ export interface GrantUserPermissionsResponse {
12735
13044
  */
12736
13045
  RequestId?: string;
12737
13046
  }
13047
+ /**
13048
+ * 集群资源使用量
13049
+ */
13050
+ export interface ResourceUsage {
13051
+ /**
13052
+ * 资源类型,参考k8s 官方资源
13053
+ */
13054
+ Name?: string;
13055
+ /**
13056
+ * 资源使用量,单位:个数
13057
+ */
13058
+ Usage?: number;
13059
+ /**
13060
+ * 资源使用详情
13061
+ */
13062
+ Details?: Array<ResourceUsageDetail>;
13063
+ }
12738
13064
  /**
12739
13065
  * DescribeRouteTableConflicts返回参数结构体
12740
13066
  */
@@ -13672,6 +13998,55 @@ export interface DescribeVpcCniPodLimitsRequest {
13672
13998
  */
13673
13999
  InstanceType?: string;
13674
14000
  }
14001
+ /**
14002
+ * 第三方节点池信息
14003
+ */
14004
+ export interface ExternalNodePool {
14005
+ /**
14006
+ * 第三方节点池ID
14007
+ */
14008
+ NodePoolId: string;
14009
+ /**
14010
+ * 第三方节点池名称
14011
+ */
14012
+ Name: string;
14013
+ /**
14014
+ * 节点池生命周期
14015
+ */
14016
+ LifeState: string;
14017
+ /**
14018
+ * 集群CIDR
14019
+ */
14020
+ ClusterCIDR: string;
14021
+ /**
14022
+ * 集群网络插件类型
14023
+ */
14024
+ NetworkType: string;
14025
+ /**
14026
+ * 第三方节点Runtime配置
14027
+ */
14028
+ RuntimeConfig: RuntimeConfig;
14029
+ /**
14030
+ * 第三方节点label
14031
+ 注意:此字段可能返回 null,表示取不到有效值。
14032
+ */
14033
+ Labels: Array<Label>;
14034
+ /**
14035
+ * 第三方节点taint
14036
+ 注意:此字段可能返回 null,表示取不到有效值。
14037
+ */
14038
+ Taints: Array<Taint>;
14039
+ /**
14040
+ * 第三方节点高级设置
14041
+ 注意:此字段可能返回 null,表示取不到有效值。
14042
+ */
14043
+ InstanceAdvancedSettings: InstanceAdvancedSettings;
14044
+ /**
14045
+ * 删除保护开关
14046
+ 注意:此字段可能返回 null,表示取不到有效值。
14047
+ */
14048
+ DeletionProtection: boolean;
14049
+ }
13675
14050
  /**
13676
14051
  * DeleteImageCaches返回参数结构体
13677
14052
  */
@@ -13699,6 +14074,15 @@ export interface ModifyClusterRollOutSequenceTagsResponse {
13699
14074
  */
13700
14075
  RequestId?: string;
13701
14076
  }
14077
+ /**
14078
+ * DrainExternalNode返回参数结构体
14079
+ */
14080
+ export interface DrainExternalNodeResponse {
14081
+ /**
14082
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
14083
+ */
14084
+ RequestId?: string;
14085
+ }
13702
14086
  /**
13703
14087
  * DescribeEKSContainerInstanceRegions返回参数结构体
13704
14088
  */
@@ -13926,23 +14310,6 @@ export interface DeletePrometheusRecordRuleYamlRequest {
13926
14310
  */
13927
14311
  Names: Array<string>;
13928
14312
  }
13929
- /**
13930
- * DescribeClusters返回参数结构体
13931
- */
13932
- export interface DescribeClustersResponse {
13933
- /**
13934
- * 集群总个数
13935
- */
13936
- TotalCount?: number;
13937
- /**
13938
- * 集群信息列表
13939
- */
13940
- Clusters?: Array<Cluster>;
13941
- /**
13942
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
13943
- */
13944
- RequestId?: string;
13945
- }
13946
14313
  /**
13947
14314
  * InstallAddon请求参数结构体
13948
14315
  */
@@ -13968,6 +14335,25 @@ export interface InstallAddonRequest {
13968
14335
  */
13969
14336
  DryRun?: boolean;
13970
14337
  }
14338
+ /**
14339
+ * DescribeExternalNodePools返回参数结构体
14340
+ */
14341
+ export interface DescribeExternalNodePoolsResponse {
14342
+ /**
14343
+ * 节点池总数
14344
+ 注意:此字段可能返回 null,表示取不到有效值。
14345
+ */
14346
+ TotalCount: number;
14347
+ /**
14348
+ * 第三方节点池列表
14349
+ 注意:此字段可能返回 null,表示取不到有效值。
14350
+ */
14351
+ NodePoolSet: Array<ExternalNodePool>;
14352
+ /**
14353
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
14354
+ */
14355
+ RequestId?: string;
14356
+ }
13971
14357
  /**
13972
14358
  * DescribeGlobalMaintenanceWindowAndExclusions返回参数结构体
13973
14359
  */
@@ -14259,6 +14645,34 @@ export interface ModifyReservedInstanceScopeRequest {
14259
14645
  */
14260
14646
  ReservedInstanceScope: ReservedInstanceScope;
14261
14647
  }
14648
+ /**
14649
+ * 托管prometheus中grafana的信息
14650
+ */
14651
+ export interface PrometheusGrafanaInfo {
14652
+ /**
14653
+ * 是否启用
14654
+ */
14655
+ Enabled?: boolean;
14656
+ /**
14657
+ * 域名,只有开启外网访问才有效果
14658
+ */
14659
+ Domain?: string;
14660
+ /**
14661
+ * 内网地址,或者外网地址
14662
+ */
14663
+ Address?: string;
14664
+ /**
14665
+ * 是否开启了外网访问
14666
+ close = 未开启外网访问
14667
+ opening = 正在开启外网访问
14668
+ open = 已开启外网访问
14669
+ */
14670
+ Internet?: string;
14671
+ /**
14672
+ * grafana管理员用户名
14673
+ */
14674
+ AdminUser?: string;
14675
+ }
14262
14676
  /**
14263
14677
  * DisableEncryptionProtection请求参数结构体
14264
14678
  */