tencentcloud-sdk-nodejs-tke 4.0.621 → 4.0.625
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/CHANGELOG.md +582 -0
- package/SERVICE_CHANGELOG.md +580 -160
- package/package.json +1 -1
- package/products.md +40 -40
- package/src/services/tke/v20180525/tke_client.ts +126 -29
- package/src/services/tke/v20180525/tke_models.ts +417 -195
- package/tencentcloud/services/tke/v20180525/tke_client.d.ts +37 -5
- package/tencentcloud/services/tke/v20180525/tke_client.js +54 -6
- package/tencentcloud/services/tke/v20180525/tke_models.d.ts +400 -195
|
@@ -188,6 +188,19 @@ export interface CbsVolume {
|
|
|
188
188
|
*/
|
|
189
189
|
CbsDiskId: string;
|
|
190
190
|
}
|
|
191
|
+
/**
|
|
192
|
+
* DescribeAddon返回参数结构体
|
|
193
|
+
*/
|
|
194
|
+
export interface DescribeAddonResponse {
|
|
195
|
+
/**
|
|
196
|
+
* addon列表
|
|
197
|
+
*/
|
|
198
|
+
Addons?: Array<Addon>;
|
|
199
|
+
/**
|
|
200
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
201
|
+
*/
|
|
202
|
+
RequestId?: string;
|
|
203
|
+
}
|
|
191
204
|
/**
|
|
192
205
|
* DescribeEKSClusters请求参数结构体
|
|
193
206
|
*/
|
|
@@ -368,6 +381,34 @@ export interface UpgradeClusterReleaseRequest {
|
|
|
368
381
|
*/
|
|
369
382
|
ClusterType?: string;
|
|
370
383
|
}
|
|
384
|
+
/**
|
|
385
|
+
* addon的具体描述
|
|
386
|
+
*/
|
|
387
|
+
export interface Addon {
|
|
388
|
+
/**
|
|
389
|
+
* addon名称
|
|
390
|
+
*/
|
|
391
|
+
AddonName?: string;
|
|
392
|
+
/**
|
|
393
|
+
* addon的版本
|
|
394
|
+
*/
|
|
395
|
+
AddonVersion?: string;
|
|
396
|
+
/**
|
|
397
|
+
* addon的参数,是一个json格式的base64转码后的字符串
|
|
398
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
399
|
+
*/
|
|
400
|
+
RawValues?: string;
|
|
401
|
+
/**
|
|
402
|
+
* addon的状态
|
|
403
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
404
|
+
*/
|
|
405
|
+
Phase?: string;
|
|
406
|
+
/**
|
|
407
|
+
* addon失败的原因
|
|
408
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
409
|
+
*/
|
|
410
|
+
Reason?: string;
|
|
411
|
+
}
|
|
371
412
|
/**
|
|
372
413
|
* DescribeEdgeClusterUpgradeInfo请求参数结构体
|
|
373
414
|
*/
|
|
@@ -824,25 +865,21 @@ export interface ModifyClusterAttributeRequest {
|
|
|
824
865
|
QGPUShareEnable?: boolean;
|
|
825
866
|
}
|
|
826
867
|
/**
|
|
827
|
-
*
|
|
868
|
+
* DescribeClusterRoutes返回参数结构体
|
|
828
869
|
*/
|
|
829
|
-
export interface
|
|
830
|
-
/**
|
|
831
|
-
* 正在加入中的节点数量
|
|
832
|
-
*/
|
|
833
|
-
Joining: number;
|
|
870
|
+
export interface DescribeClusterRoutesResponse {
|
|
834
871
|
/**
|
|
835
|
-
*
|
|
872
|
+
* 符合条件的实例数量。
|
|
836
873
|
*/
|
|
837
|
-
|
|
874
|
+
TotalCount?: number;
|
|
838
875
|
/**
|
|
839
|
-
*
|
|
876
|
+
* 集群路由对象。
|
|
840
877
|
*/
|
|
841
|
-
|
|
878
|
+
RouteSet?: Array<RouteInfo>;
|
|
842
879
|
/**
|
|
843
|
-
*
|
|
880
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
844
881
|
*/
|
|
845
|
-
|
|
882
|
+
RequestId?: string;
|
|
846
883
|
}
|
|
847
884
|
/**
|
|
848
885
|
* DescribeClusters请求参数结构体
|
|
@@ -964,6 +1001,19 @@ export interface ExtensionAddon {
|
|
|
964
1001
|
*/
|
|
965
1002
|
AddonParam: string;
|
|
966
1003
|
}
|
|
1004
|
+
/**
|
|
1005
|
+
* DescribeAddonValues请求参数结构体
|
|
1006
|
+
*/
|
|
1007
|
+
export interface DescribeAddonValuesRequest {
|
|
1008
|
+
/**
|
|
1009
|
+
* 集群ID
|
|
1010
|
+
*/
|
|
1011
|
+
ClusterId: string;
|
|
1012
|
+
/**
|
|
1013
|
+
* addon名称
|
|
1014
|
+
*/
|
|
1015
|
+
AddonName: string;
|
|
1016
|
+
}
|
|
967
1017
|
/**
|
|
968
1018
|
* DescribeResourceUsage请求参数结构体
|
|
969
1019
|
*/
|
|
@@ -1069,6 +1119,27 @@ export interface DescribeClusterReleaseDetailsResponse {
|
|
|
1069
1119
|
*/
|
|
1070
1120
|
RequestId?: string;
|
|
1071
1121
|
}
|
|
1122
|
+
/**
|
|
1123
|
+
* 自动扩所容的节点
|
|
1124
|
+
*/
|
|
1125
|
+
export interface AutoscalingAdded {
|
|
1126
|
+
/**
|
|
1127
|
+
* 正在加入中的节点数量
|
|
1128
|
+
*/
|
|
1129
|
+
Joining: number;
|
|
1130
|
+
/**
|
|
1131
|
+
* 初始化中的节点数量
|
|
1132
|
+
*/
|
|
1133
|
+
Initializing: number;
|
|
1134
|
+
/**
|
|
1135
|
+
* 正常的节点数量
|
|
1136
|
+
*/
|
|
1137
|
+
Normal: number;
|
|
1138
|
+
/**
|
|
1139
|
+
* 节点总数
|
|
1140
|
+
*/
|
|
1141
|
+
Total: number;
|
|
1142
|
+
}
|
|
1072
1143
|
/**
|
|
1073
1144
|
* SyncPrometheusTemp返回参数结构体
|
|
1074
1145
|
*/
|
|
@@ -1295,6 +1366,10 @@ export interface ModifyPrometheusTemplateRequest {
|
|
|
1295
1366
|
*/
|
|
1296
1367
|
Template: PrometheusTemplateModify;
|
|
1297
1368
|
}
|
|
1369
|
+
/**
|
|
1370
|
+
* DescribeEncryptionStatus请求参数结构体
|
|
1371
|
+
*/
|
|
1372
|
+
export declare type DescribeEncryptionStatusRequest = null;
|
|
1298
1373
|
/**
|
|
1299
1374
|
* DeleteClusterVirtualNodePool请求参数结构体
|
|
1300
1375
|
*/
|
|
@@ -1341,26 +1416,17 @@ export interface DescribeImageCachesRequest {
|
|
|
1341
1416
|
Filters?: Array<Filter>;
|
|
1342
1417
|
}
|
|
1343
1418
|
/**
|
|
1344
|
-
*
|
|
1419
|
+
* DeleteAddon请求参数结构体
|
|
1345
1420
|
*/
|
|
1346
|
-
export interface
|
|
1421
|
+
export interface DeleteAddonRequest {
|
|
1347
1422
|
/**
|
|
1348
|
-
*
|
|
1349
|
-
*/
|
|
1350
|
-
InstanceId: string;
|
|
1351
|
-
/**
|
|
1352
|
-
* 分页
|
|
1353
|
-
*/
|
|
1354
|
-
Offset?: number;
|
|
1355
|
-
/**
|
|
1356
|
-
* 分页
|
|
1423
|
+
* 集群ID
|
|
1357
1424
|
*/
|
|
1358
|
-
|
|
1425
|
+
ClusterId: string;
|
|
1359
1426
|
/**
|
|
1360
|
-
*
|
|
1361
|
-
支持ID,Name
|
|
1427
|
+
* addon名称
|
|
1362
1428
|
*/
|
|
1363
|
-
|
|
1429
|
+
AddonName: string;
|
|
1364
1430
|
}
|
|
1365
1431
|
/**
|
|
1366
1432
|
* DescribeEdgeAvailableExtraArgs请求参数结构体
|
|
@@ -2490,10 +2556,6 @@ export interface DescribeClusterNodePoolsRequest {
|
|
|
2490
2556
|
* DescribeClusterRouteTables请求参数结构体
|
|
2491
2557
|
*/
|
|
2492
2558
|
export declare type DescribeClusterRouteTablesRequest = null;
|
|
2493
|
-
/**
|
|
2494
|
-
* DescribeRegions请求参数结构体
|
|
2495
|
-
*/
|
|
2496
|
-
export declare type DescribeRegionsRequest = null;
|
|
2497
2559
|
/**
|
|
2498
2560
|
* DeleteClusterRoute请求参数结构体
|
|
2499
2561
|
*/
|
|
@@ -3026,6 +3088,35 @@ export interface DescribeClusterNodePoolDetailResponse {
|
|
|
3026
3088
|
*/
|
|
3027
3089
|
RequestId?: string;
|
|
3028
3090
|
}
|
|
3091
|
+
/**
|
|
3092
|
+
* DeletePrometheusConfig请求参数结构体
|
|
3093
|
+
*/
|
|
3094
|
+
export interface DeletePrometheusConfigRequest {
|
|
3095
|
+
/**
|
|
3096
|
+
* 实例id
|
|
3097
|
+
*/
|
|
3098
|
+
InstanceId: string;
|
|
3099
|
+
/**
|
|
3100
|
+
* 集群类型
|
|
3101
|
+
*/
|
|
3102
|
+
ClusterType: string;
|
|
3103
|
+
/**
|
|
3104
|
+
* 集群id
|
|
3105
|
+
*/
|
|
3106
|
+
ClusterId: string;
|
|
3107
|
+
/**
|
|
3108
|
+
* 要删除的ServiceMonitor名字列表
|
|
3109
|
+
*/
|
|
3110
|
+
ServiceMonitors?: Array<string>;
|
|
3111
|
+
/**
|
|
3112
|
+
* 要删除的PodMonitor名字列表
|
|
3113
|
+
*/
|
|
3114
|
+
PodMonitors?: Array<string>;
|
|
3115
|
+
/**
|
|
3116
|
+
* 要删除的RawJobs名字列表
|
|
3117
|
+
*/
|
|
3118
|
+
RawJobs?: Array<string>;
|
|
3119
|
+
}
|
|
3029
3120
|
/**
|
|
3030
3121
|
* DescribeEKSContainerInstanceEvent请求参数结构体
|
|
3031
3122
|
*/
|
|
@@ -3753,17 +3844,9 @@ export interface DisableClusterAuditRequest {
|
|
|
3753
3844
|
DeleteLogSetAndTopic?: boolean;
|
|
3754
3845
|
}
|
|
3755
3846
|
/**
|
|
3756
|
-
*
|
|
3847
|
+
* DeleteBackupStorageLocation返回参数结构体
|
|
3757
3848
|
*/
|
|
3758
|
-
export interface
|
|
3759
|
-
/**
|
|
3760
|
-
* 聚合规则
|
|
3761
|
-
*/
|
|
3762
|
-
Records: Array<PrometheusRecordRuleYamlItem>;
|
|
3763
|
-
/**
|
|
3764
|
-
* 总数
|
|
3765
|
-
*/
|
|
3766
|
-
Total: number;
|
|
3849
|
+
export interface DeleteBackupStorageLocationResponse {
|
|
3767
3850
|
/**
|
|
3768
3851
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3769
3852
|
*/
|
|
@@ -4564,23 +4647,6 @@ export interface EdgeClusterInternalLB {
|
|
|
4564
4647
|
*/
|
|
4565
4648
|
SubnetId?: Array<string>;
|
|
4566
4649
|
}
|
|
4567
|
-
/**
|
|
4568
|
-
* DescribeClusterRoutes返回参数结构体
|
|
4569
|
-
*/
|
|
4570
|
-
export interface DescribeClusterRoutesResponse {
|
|
4571
|
-
/**
|
|
4572
|
-
* 符合条件的实例数量。
|
|
4573
|
-
*/
|
|
4574
|
-
TotalCount?: number;
|
|
4575
|
-
/**
|
|
4576
|
-
* 集群路由对象。
|
|
4577
|
-
*/
|
|
4578
|
-
RouteSet?: Array<RouteInfo>;
|
|
4579
|
-
/**
|
|
4580
|
-
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4581
|
-
*/
|
|
4582
|
-
RequestId?: string;
|
|
4583
|
-
}
|
|
4584
4650
|
/**
|
|
4585
4651
|
* DescribeAvailableClusterVersion请求参数结构体
|
|
4586
4652
|
*/
|
|
@@ -4700,6 +4766,15 @@ export interface DescribeEdgeLogSwitchesRequest {
|
|
|
4700
4766
|
*/
|
|
4701
4767
|
ClusterIds: Array<string>;
|
|
4702
4768
|
}
|
|
4769
|
+
/**
|
|
4770
|
+
* EnableEncryptionProtection返回参数结构体
|
|
4771
|
+
*/
|
|
4772
|
+
export interface EnableEncryptionProtectionResponse {
|
|
4773
|
+
/**
|
|
4774
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4775
|
+
*/
|
|
4776
|
+
RequestId?: string;
|
|
4777
|
+
}
|
|
4703
4778
|
/**
|
|
4704
4779
|
* DeletePrometheusTemplate请求参数结构体
|
|
4705
4780
|
*/
|
|
@@ -5350,13 +5425,13 @@ export interface RemoveNodeFromNodePoolRequest {
|
|
|
5350
5425
|
InstanceIds: Array<string>;
|
|
5351
5426
|
}
|
|
5352
5427
|
/**
|
|
5353
|
-
*
|
|
5428
|
+
* DescribeEncryptionStatus返回参数结构体
|
|
5354
5429
|
*/
|
|
5355
|
-
export interface
|
|
5430
|
+
export interface DescribeEncryptionStatusResponse {
|
|
5356
5431
|
/**
|
|
5357
|
-
*
|
|
5432
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5358
5433
|
*/
|
|
5359
|
-
|
|
5434
|
+
RequestId?: string;
|
|
5360
5435
|
}
|
|
5361
5436
|
/**
|
|
5362
5437
|
* DescribeClusterLevelChangeRecords请求参数结构体
|
|
@@ -5512,6 +5587,15 @@ export interface EipAttribute {
|
|
|
5512
5587
|
*/
|
|
5513
5588
|
InternetMaxBandwidthOut?: number;
|
|
5514
5589
|
}
|
|
5590
|
+
/**
|
|
5591
|
+
* UpdateAddon返回参数结构体
|
|
5592
|
+
*/
|
|
5593
|
+
export interface UpdateAddonResponse {
|
|
5594
|
+
/**
|
|
5595
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5596
|
+
*/
|
|
5597
|
+
RequestId?: string;
|
|
5598
|
+
}
|
|
5515
5599
|
/**
|
|
5516
5600
|
* DescribeEKSContainerInstances请求参数结构体
|
|
5517
5601
|
*/
|
|
@@ -5814,6 +5898,23 @@ export interface DescribeClusterVirtualNodePoolsRequest {
|
|
|
5814
5898
|
*/
|
|
5815
5899
|
ClusterId: string;
|
|
5816
5900
|
}
|
|
5901
|
+
/**
|
|
5902
|
+
* DescribePrometheusRecordRules返回参数结构体
|
|
5903
|
+
*/
|
|
5904
|
+
export interface DescribePrometheusRecordRulesResponse {
|
|
5905
|
+
/**
|
|
5906
|
+
* 聚合规则
|
|
5907
|
+
*/
|
|
5908
|
+
Records: Array<PrometheusRecordRuleYamlItem>;
|
|
5909
|
+
/**
|
|
5910
|
+
* 总数
|
|
5911
|
+
*/
|
|
5912
|
+
Total: number;
|
|
5913
|
+
/**
|
|
5914
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5915
|
+
*/
|
|
5916
|
+
RequestId?: string;
|
|
5917
|
+
}
|
|
5817
5918
|
/**
|
|
5818
5919
|
* GetMostSuitableImageCache请求参数结构体
|
|
5819
5920
|
*/
|
|
@@ -6194,23 +6295,6 @@ export interface ModifyPrometheusAlertPolicyResponse {
|
|
|
6194
6295
|
*/
|
|
6195
6296
|
RequestId?: string;
|
|
6196
6297
|
}
|
|
6197
|
-
/**
|
|
6198
|
-
* DescribePrometheusClusterAgents返回参数结构体
|
|
6199
|
-
*/
|
|
6200
|
-
export interface DescribePrometheusClusterAgentsResponse {
|
|
6201
|
-
/**
|
|
6202
|
-
* 被关联集群信息
|
|
6203
|
-
*/
|
|
6204
|
-
Agents: Array<PrometheusAgentOverview>;
|
|
6205
|
-
/**
|
|
6206
|
-
* 被关联集群总量
|
|
6207
|
-
*/
|
|
6208
|
-
Total: number;
|
|
6209
|
-
/**
|
|
6210
|
-
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6211
|
-
*/
|
|
6212
|
-
RequestId?: string;
|
|
6213
|
-
}
|
|
6214
6298
|
/**
|
|
6215
6299
|
* 集群信息结构体
|
|
6216
6300
|
*/
|
|
@@ -6593,18 +6677,9 @@ export interface CreatePrometheusClusterAgentRequest {
|
|
|
6593
6677
|
Agents: Array<PrometheusClusterAgentBasic>;
|
|
6594
6678
|
}
|
|
6595
6679
|
/**
|
|
6596
|
-
*
|
|
6680
|
+
* DeleteEKSContainerInstances返回参数结构体
|
|
6597
6681
|
*/
|
|
6598
|
-
export interface
|
|
6599
|
-
/**
|
|
6600
|
-
* NodePools(节点池列表)
|
|
6601
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6602
|
-
*/
|
|
6603
|
-
NodePoolSet: Array<NodePool>;
|
|
6604
|
-
/**
|
|
6605
|
-
* 资源总数
|
|
6606
|
-
*/
|
|
6607
|
-
TotalCount: number;
|
|
6682
|
+
export interface DeleteEKSContainerInstancesResponse {
|
|
6608
6683
|
/**
|
|
6609
6684
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6610
6685
|
*/
|
|
@@ -7040,13 +7115,21 @@ export interface ECMEnhancedService {
|
|
|
7040
7115
|
MonitorService?: ECMRunSecurityServiceEnabled;
|
|
7041
7116
|
}
|
|
7042
7117
|
/**
|
|
7043
|
-
*
|
|
7118
|
+
* CVM实例数据盘挂载配置
|
|
7044
7119
|
*/
|
|
7045
|
-
export interface
|
|
7120
|
+
export interface InstanceDataDiskMountSetting {
|
|
7046
7121
|
/**
|
|
7047
|
-
*
|
|
7122
|
+
* CVM实例类型
|
|
7048
7123
|
*/
|
|
7049
|
-
|
|
7124
|
+
InstanceType: string;
|
|
7125
|
+
/**
|
|
7126
|
+
* 数据盘挂载信息
|
|
7127
|
+
*/
|
|
7128
|
+
DataDisks: Array<DataDisk>;
|
|
7129
|
+
/**
|
|
7130
|
+
* CVM实例所属可用区
|
|
7131
|
+
*/
|
|
7132
|
+
Zone: string;
|
|
7050
7133
|
}
|
|
7051
7134
|
/**
|
|
7052
7135
|
* 边缘计算集群公网访问负载均衡信息
|
|
@@ -7064,14 +7147,9 @@ export interface EdgeClusterPublicLB {
|
|
|
7064
7147
|
AllowFromCidrs?: Array<string>;
|
|
7065
7148
|
}
|
|
7066
7149
|
/**
|
|
7067
|
-
*
|
|
7150
|
+
* EnableEncryptionProtection请求参数结构体
|
|
7068
7151
|
*/
|
|
7069
|
-
export
|
|
7070
|
-
/**
|
|
7071
|
-
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7072
|
-
*/
|
|
7073
|
-
RequestId?: string;
|
|
7074
|
-
}
|
|
7152
|
+
export declare type EnableEncryptionProtectionRequest = null;
|
|
7075
7153
|
/**
|
|
7076
7154
|
* 描述了实例的增强服务启用情况与其设置,如云安全,云监控等实例 Agent
|
|
7077
7155
|
*/
|
|
@@ -7090,14 +7168,45 @@ export interface EnhancedService {
|
|
|
7090
7168
|
AutomationService?: RunAutomationServiceEnabled;
|
|
7091
7169
|
}
|
|
7092
7170
|
/**
|
|
7093
|
-
*
|
|
7171
|
+
* DescribeRouteTableConflicts返回参数结构体
|
|
7094
7172
|
*/
|
|
7095
|
-
export interface
|
|
7173
|
+
export interface DescribeRouteTableConflictsResponse {
|
|
7096
7174
|
/**
|
|
7097
|
-
*
|
|
7175
|
+
* 路由表是否冲突。
|
|
7098
7176
|
*/
|
|
7099
|
-
|
|
7100
|
-
|
|
7177
|
+
HasConflict: boolean;
|
|
7178
|
+
/**
|
|
7179
|
+
* 路由表冲突列表。
|
|
7180
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7181
|
+
*/
|
|
7182
|
+
RouteTableConflictSet: Array<RouteTableConflict>;
|
|
7183
|
+
/**
|
|
7184
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7185
|
+
*/
|
|
7186
|
+
RequestId?: string;
|
|
7187
|
+
}
|
|
7188
|
+
/**
|
|
7189
|
+
* DescribePrometheusAlertRule请求参数结构体
|
|
7190
|
+
*/
|
|
7191
|
+
export interface DescribePrometheusAlertRuleRequest {
|
|
7192
|
+
/**
|
|
7193
|
+
* 实例id
|
|
7194
|
+
*/
|
|
7195
|
+
InstanceId: string;
|
|
7196
|
+
/**
|
|
7197
|
+
* 分页
|
|
7198
|
+
*/
|
|
7199
|
+
Offset?: number;
|
|
7200
|
+
/**
|
|
7201
|
+
* 分页
|
|
7202
|
+
*/
|
|
7203
|
+
Limit?: number;
|
|
7204
|
+
/**
|
|
7205
|
+
* 过滤
|
|
7206
|
+
支持ID,Name
|
|
7207
|
+
*/
|
|
7208
|
+
Filters?: Array<Filter>;
|
|
7209
|
+
}
|
|
7101
7210
|
/**
|
|
7102
7211
|
* UninstallLogAgent请求参数结构体
|
|
7103
7212
|
*/
|
|
@@ -7655,6 +7764,23 @@ export interface DeleteClusterRouteTableResponse {
|
|
|
7655
7764
|
*/
|
|
7656
7765
|
RequestId?: string;
|
|
7657
7766
|
}
|
|
7767
|
+
/**
|
|
7768
|
+
* DescribeAddonValues返回参数结构体
|
|
7769
|
+
*/
|
|
7770
|
+
export interface DescribeAddonValuesResponse {
|
|
7771
|
+
/**
|
|
7772
|
+
* 参数列表,如果addon已安装,会使用已设置的的参数做渲染,是一个json格式的字符串
|
|
7773
|
+
*/
|
|
7774
|
+
Values?: string;
|
|
7775
|
+
/**
|
|
7776
|
+
* addon支持的参数列表,使用默认值,是一个json格式的字符串
|
|
7777
|
+
*/
|
|
7778
|
+
DefaultValues?: string;
|
|
7779
|
+
/**
|
|
7780
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7781
|
+
*/
|
|
7782
|
+
RequestId?: string;
|
|
7783
|
+
}
|
|
7658
7784
|
/**
|
|
7659
7785
|
* DisableClusterDeletionProtection请求参数结构体
|
|
7660
7786
|
*/
|
|
@@ -8723,6 +8849,15 @@ export interface AutoUpgradeClusterLevel {
|
|
|
8723
8849
|
*/
|
|
8724
8850
|
IsAutoUpgrade: boolean;
|
|
8725
8851
|
}
|
|
8852
|
+
/**
|
|
8853
|
+
* DisableEncryptionProtection返回参数结构体
|
|
8854
|
+
*/
|
|
8855
|
+
export interface DisableEncryptionProtectionResponse {
|
|
8856
|
+
/**
|
|
8857
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
8858
|
+
*/
|
|
8859
|
+
RequestId?: string;
|
|
8860
|
+
}
|
|
8726
8861
|
/**
|
|
8727
8862
|
* CreateEKSCluster请求参数结构体
|
|
8728
8863
|
*/
|
|
@@ -8806,6 +8941,36 @@ export interface EnableEventPersistenceRequest {
|
|
|
8806
8941
|
*/
|
|
8807
8942
|
TopicRegion?: string;
|
|
8808
8943
|
}
|
|
8944
|
+
/**
|
|
8945
|
+
* ModifyClusterAuthenticationOptions返回参数结构体
|
|
8946
|
+
*/
|
|
8947
|
+
export interface ModifyClusterAuthenticationOptionsResponse {
|
|
8948
|
+
/**
|
|
8949
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
8950
|
+
*/
|
|
8951
|
+
RequestId?: string;
|
|
8952
|
+
}
|
|
8953
|
+
/**
|
|
8954
|
+
* UpdateAddon请求参数结构体
|
|
8955
|
+
*/
|
|
8956
|
+
export interface UpdateAddonRequest {
|
|
8957
|
+
/**
|
|
8958
|
+
* 集群ID
|
|
8959
|
+
*/
|
|
8960
|
+
ClusterId: string;
|
|
8961
|
+
/**
|
|
8962
|
+
* addon名称
|
|
8963
|
+
*/
|
|
8964
|
+
AddonName: string;
|
|
8965
|
+
/**
|
|
8966
|
+
* addon版本(不传默认不更新)
|
|
8967
|
+
*/
|
|
8968
|
+
AddonVersion?: string;
|
|
8969
|
+
/**
|
|
8970
|
+
* addon的参数,是一个json格式的base64转码后的字符串(addon参数由DescribeAddonValues获取)
|
|
8971
|
+
*/
|
|
8972
|
+
RawValues?: string;
|
|
8973
|
+
}
|
|
8809
8974
|
/**
|
|
8810
8975
|
* ModifyClusterVirtualNodePool请求参数结构体
|
|
8811
8976
|
*/
|
|
@@ -9003,44 +9168,13 @@ export interface DeleteEdgeClusterInstancesRequest {
|
|
|
9003
9168
|
InstanceIds: Array<string>;
|
|
9004
9169
|
}
|
|
9005
9170
|
/**
|
|
9006
|
-
*
|
|
9171
|
+
* EnableEventPersistence返回参数结构体
|
|
9007
9172
|
*/
|
|
9008
|
-
export interface
|
|
9009
|
-
/**
|
|
9010
|
-
* 规则名称
|
|
9011
|
-
*/
|
|
9012
|
-
Name: string;
|
|
9013
|
-
/**
|
|
9014
|
-
* prometheus语句
|
|
9015
|
-
*/
|
|
9016
|
-
Rule: string;
|
|
9017
|
-
/**
|
|
9018
|
-
* 额外标签
|
|
9019
|
-
*/
|
|
9020
|
-
Labels: Array<Label>;
|
|
9021
|
-
/**
|
|
9022
|
-
* 告警发送模板
|
|
9023
|
-
*/
|
|
9024
|
-
Template: string;
|
|
9025
|
-
/**
|
|
9026
|
-
* 持续时间
|
|
9027
|
-
*/
|
|
9028
|
-
For: string;
|
|
9029
|
-
/**
|
|
9030
|
-
* 该条规则的描述信息
|
|
9031
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
9032
|
-
*/
|
|
9033
|
-
Describe?: string;
|
|
9034
|
-
/**
|
|
9035
|
-
* 参考prometheus rule中的annotations
|
|
9036
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
9037
|
-
*/
|
|
9038
|
-
Annotations?: Array<Label>;
|
|
9173
|
+
export interface EnableEventPersistenceResponse {
|
|
9039
9174
|
/**
|
|
9040
|
-
*
|
|
9041
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
9175
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
9042
9176
|
*/
|
|
9043
|
-
|
|
9177
|
+
RequestId?: string;
|
|
9044
9178
|
}
|
|
9045
9179
|
/**
|
|
9046
9180
|
* 虚拟节点
|
|
@@ -9147,6 +9281,15 @@ export interface DescribeImagesResponse {
|
|
|
9147
9281
|
*/
|
|
9148
9282
|
RequestId?: string;
|
|
9149
9283
|
}
|
|
9284
|
+
/**
|
|
9285
|
+
* UninstallEdgeLogAgent请求参数结构体
|
|
9286
|
+
*/
|
|
9287
|
+
export interface UninstallEdgeLogAgentRequest {
|
|
9288
|
+
/**
|
|
9289
|
+
* 集群ID
|
|
9290
|
+
*/
|
|
9291
|
+
ClusterId: string;
|
|
9292
|
+
}
|
|
9150
9293
|
/**
|
|
9151
9294
|
* 集群master自定义参数
|
|
9152
9295
|
*/
|
|
@@ -9585,6 +9728,24 @@ export interface ModifyPrometheusGlobalNotificationRequest {
|
|
|
9585
9728
|
*/
|
|
9586
9729
|
Notification: PrometheusNotificationItem;
|
|
9587
9730
|
}
|
|
9731
|
+
/**
|
|
9732
|
+
* DescribeClusterNodePools返回参数结构体
|
|
9733
|
+
*/
|
|
9734
|
+
export interface DescribeClusterNodePoolsResponse {
|
|
9735
|
+
/**
|
|
9736
|
+
* NodePools(节点池列表)
|
|
9737
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9738
|
+
*/
|
|
9739
|
+
NodePoolSet: Array<NodePool>;
|
|
9740
|
+
/**
|
|
9741
|
+
* 资源总数
|
|
9742
|
+
*/
|
|
9743
|
+
TotalCount: number;
|
|
9744
|
+
/**
|
|
9745
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
9746
|
+
*/
|
|
9747
|
+
RequestId?: string;
|
|
9748
|
+
}
|
|
9588
9749
|
/**
|
|
9589
9750
|
* 不可用原因
|
|
9590
9751
|
*/
|
|
@@ -9644,14 +9805,9 @@ export interface DescribeEdgeCVMInstancesResponse {
|
|
|
9644
9805
|
RequestId?: string;
|
|
9645
9806
|
}
|
|
9646
9807
|
/**
|
|
9647
|
-
*
|
|
9808
|
+
* DescribeRegions请求参数结构体
|
|
9648
9809
|
*/
|
|
9649
|
-
export
|
|
9650
|
-
/**
|
|
9651
|
-
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
9652
|
-
*/
|
|
9653
|
-
RequestId?: string;
|
|
9654
|
-
}
|
|
9810
|
+
export declare type DescribeRegionsRequest = null;
|
|
9655
9811
|
/**
|
|
9656
9812
|
* ModifyNodePoolDesiredCapacityAboutAsg请求参数结构体
|
|
9657
9813
|
*/
|
|
@@ -9757,33 +9913,13 @@ export interface PrometheusNotificationItem {
|
|
|
9757
9913
|
PhoneArriveNotice?: boolean;
|
|
9758
9914
|
}
|
|
9759
9915
|
/**
|
|
9760
|
-
*
|
|
9916
|
+
* DeleteECMInstances返回参数结构体
|
|
9761
9917
|
*/
|
|
9762
|
-
export interface
|
|
9763
|
-
/**
|
|
9764
|
-
* 实例id
|
|
9765
|
-
*/
|
|
9766
|
-
InstanceId: string;
|
|
9767
|
-
/**
|
|
9768
|
-
* 集群类型
|
|
9769
|
-
*/
|
|
9770
|
-
ClusterType: string;
|
|
9771
|
-
/**
|
|
9772
|
-
* 集群id
|
|
9773
|
-
*/
|
|
9774
|
-
ClusterId: string;
|
|
9775
|
-
/**
|
|
9776
|
-
* 要删除的ServiceMonitor名字列表
|
|
9777
|
-
*/
|
|
9778
|
-
ServiceMonitors?: Array<string>;
|
|
9779
|
-
/**
|
|
9780
|
-
* 要删除的PodMonitor名字列表
|
|
9781
|
-
*/
|
|
9782
|
-
PodMonitors?: Array<string>;
|
|
9918
|
+
export interface DeleteECMInstancesResponse {
|
|
9783
9919
|
/**
|
|
9784
|
-
*
|
|
9920
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
9785
9921
|
*/
|
|
9786
|
-
|
|
9922
|
+
RequestId?: string;
|
|
9787
9923
|
}
|
|
9788
9924
|
/**
|
|
9789
9925
|
* DescribeEdgeClusterUpgradeInfo返回参数结构体
|
|
@@ -10037,18 +10173,17 @@ export interface ImageRegistryCredential {
|
|
|
10037
10173
|
Name?: string;
|
|
10038
10174
|
}
|
|
10039
10175
|
/**
|
|
10040
|
-
*
|
|
10176
|
+
* DescribePrometheusClusterAgents返回参数结构体
|
|
10041
10177
|
*/
|
|
10042
|
-
export interface
|
|
10178
|
+
export interface DescribePrometheusClusterAgentsResponse {
|
|
10043
10179
|
/**
|
|
10044
|
-
*
|
|
10180
|
+
* 被关联集群信息
|
|
10045
10181
|
*/
|
|
10046
|
-
|
|
10182
|
+
Agents: Array<PrometheusAgentOverview>;
|
|
10047
10183
|
/**
|
|
10048
|
-
*
|
|
10049
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
10184
|
+
* 被关联集群总量
|
|
10050
10185
|
*/
|
|
10051
|
-
|
|
10186
|
+
Total: number;
|
|
10052
10187
|
/**
|
|
10053
10188
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
10054
10189
|
*/
|
|
@@ -10079,6 +10214,15 @@ export interface DescribePrometheusTempRequest {
|
|
|
10079
10214
|
*/
|
|
10080
10215
|
Limit?: number;
|
|
10081
10216
|
}
|
|
10217
|
+
/**
|
|
10218
|
+
* DeleteAddon返回参数结构体
|
|
10219
|
+
*/
|
|
10220
|
+
export interface DeleteAddonResponse {
|
|
10221
|
+
/**
|
|
10222
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
10223
|
+
*/
|
|
10224
|
+
RequestId?: string;
|
|
10225
|
+
}
|
|
10082
10226
|
/**
|
|
10083
10227
|
* DeleteClusterRouteTable请求参数结构体
|
|
10084
10228
|
*/
|
|
@@ -10107,6 +10251,46 @@ export interface InstanceExtraArgs {
|
|
|
10107
10251
|
*/
|
|
10108
10252
|
Kubelet?: Array<string>;
|
|
10109
10253
|
}
|
|
10254
|
+
/**
|
|
10255
|
+
* Prometheus告警规则
|
|
10256
|
+
*/
|
|
10257
|
+
export interface PrometheusAlertRule {
|
|
10258
|
+
/**
|
|
10259
|
+
* 规则名称
|
|
10260
|
+
*/
|
|
10261
|
+
Name: string;
|
|
10262
|
+
/**
|
|
10263
|
+
* prometheus语句
|
|
10264
|
+
*/
|
|
10265
|
+
Rule: string;
|
|
10266
|
+
/**
|
|
10267
|
+
* 额外标签
|
|
10268
|
+
*/
|
|
10269
|
+
Labels: Array<Label>;
|
|
10270
|
+
/**
|
|
10271
|
+
* 告警发送模板
|
|
10272
|
+
*/
|
|
10273
|
+
Template: string;
|
|
10274
|
+
/**
|
|
10275
|
+
* 持续时间
|
|
10276
|
+
*/
|
|
10277
|
+
For: string;
|
|
10278
|
+
/**
|
|
10279
|
+
* 该条规则的描述信息
|
|
10280
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10281
|
+
*/
|
|
10282
|
+
Describe?: string;
|
|
10283
|
+
/**
|
|
10284
|
+
* 参考prometheus rule中的annotations
|
|
10285
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10286
|
+
*/
|
|
10287
|
+
Annotations?: Array<Label>;
|
|
10288
|
+
/**
|
|
10289
|
+
* 告警规则状态
|
|
10290
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10291
|
+
*/
|
|
10292
|
+
RuleState?: number;
|
|
10293
|
+
}
|
|
10110
10294
|
/**
|
|
10111
10295
|
* AcquireClusterAdminRole请求参数结构体
|
|
10112
10296
|
*/
|
|
@@ -10877,6 +11061,27 @@ export interface DeletePrometheusRecordRuleYamlRequest {
|
|
|
10877
11061
|
*/
|
|
10878
11062
|
Names: Array<string>;
|
|
10879
11063
|
}
|
|
11064
|
+
/**
|
|
11065
|
+
* InstallAddon请求参数结构体
|
|
11066
|
+
*/
|
|
11067
|
+
export interface InstallAddonRequest {
|
|
11068
|
+
/**
|
|
11069
|
+
* 集群ID
|
|
11070
|
+
*/
|
|
11071
|
+
ClusterId: string;
|
|
11072
|
+
/**
|
|
11073
|
+
* addon名称
|
|
11074
|
+
*/
|
|
11075
|
+
AddonName: string;
|
|
11076
|
+
/**
|
|
11077
|
+
* addon版本(不传默认安装最新版本)
|
|
11078
|
+
*/
|
|
11079
|
+
AddonVersion?: string;
|
|
11080
|
+
/**
|
|
11081
|
+
* addon的参数,是一个json格式的base64转码后的字符串(addon参数由DescribeAddonValues获取)
|
|
11082
|
+
*/
|
|
11083
|
+
RawValues?: string;
|
|
11084
|
+
}
|
|
10880
11085
|
/**
|
|
10881
11086
|
* 某个节点升级前检查结果
|
|
10882
11087
|
*/
|
|
@@ -10949,13 +11154,17 @@ export interface DescribeClusterCommonNamesResponse {
|
|
|
10949
11154
|
RequestId?: string;
|
|
10950
11155
|
}
|
|
10951
11156
|
/**
|
|
10952
|
-
*
|
|
11157
|
+
* DescribeAddon请求参数结构体
|
|
10953
11158
|
*/
|
|
10954
|
-
export interface
|
|
11159
|
+
export interface DescribeAddonRequest {
|
|
10955
11160
|
/**
|
|
10956
|
-
*
|
|
11161
|
+
* 集群ID
|
|
10957
11162
|
*/
|
|
10958
|
-
|
|
11163
|
+
ClusterId: string;
|
|
11164
|
+
/**
|
|
11165
|
+
* addon名称(不传时会返回集群下全部的addon)
|
|
11166
|
+
*/
|
|
11167
|
+
AddonName?: string;
|
|
10959
11168
|
}
|
|
10960
11169
|
/**
|
|
10961
11170
|
* 模板实例
|
|
@@ -11087,22 +11296,18 @@ export interface RouteTableConflict {
|
|
|
11087
11296
|
RouteTableId: string;
|
|
11088
11297
|
}
|
|
11089
11298
|
/**
|
|
11090
|
-
*
|
|
11299
|
+
* InstallAddon返回参数结构体
|
|
11091
11300
|
*/
|
|
11092
|
-
export interface
|
|
11301
|
+
export interface InstallAddonResponse {
|
|
11093
11302
|
/**
|
|
11094
|
-
*
|
|
11095
|
-
*/
|
|
11096
|
-
InstanceType: string;
|
|
11097
|
-
/**
|
|
11098
|
-
* 数据盘挂载信息
|
|
11099
|
-
*/
|
|
11100
|
-
DataDisks: Array<DataDisk>;
|
|
11101
|
-
/**
|
|
11102
|
-
* CVM实例所属可用区
|
|
11303
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
11103
11304
|
*/
|
|
11104
|
-
|
|
11305
|
+
RequestId?: string;
|
|
11105
11306
|
}
|
|
11307
|
+
/**
|
|
11308
|
+
* DisableEncryptionProtection请求参数结构体
|
|
11309
|
+
*/
|
|
11310
|
+
export declare type DisableEncryptionProtectionRequest = null;
|
|
11106
11311
|
/**
|
|
11107
11312
|
* 托管prometheus实例概览
|
|
11108
11313
|
*/
|