tencentcloud-sdk-nodejs-tke 4.0.622 → 4.0.626
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 +590 -0
- package/SERVICE_CHANGELOG.md +654 -132
- package/package.json +1 -1
- package/products.md +43 -43
- 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
|
@@ -217,6 +217,20 @@ export interface CbsVolume {
|
|
|
217
217
|
CbsDiskId: string
|
|
218
218
|
}
|
|
219
219
|
|
|
220
|
+
/**
|
|
221
|
+
* DescribeAddon返回参数结构体
|
|
222
|
+
*/
|
|
223
|
+
export interface DescribeAddonResponse {
|
|
224
|
+
/**
|
|
225
|
+
* addon列表
|
|
226
|
+
*/
|
|
227
|
+
Addons?: Array<Addon>
|
|
228
|
+
/**
|
|
229
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
230
|
+
*/
|
|
231
|
+
RequestId?: string
|
|
232
|
+
}
|
|
233
|
+
|
|
220
234
|
/**
|
|
221
235
|
* DescribeEKSClusters请求参数结构体
|
|
222
236
|
*/
|
|
@@ -402,6 +416,35 @@ export interface UpgradeClusterReleaseRequest {
|
|
|
402
416
|
ClusterType?: string
|
|
403
417
|
}
|
|
404
418
|
|
|
419
|
+
/**
|
|
420
|
+
* addon的具体描述
|
|
421
|
+
*/
|
|
422
|
+
export interface Addon {
|
|
423
|
+
/**
|
|
424
|
+
* addon名称
|
|
425
|
+
*/
|
|
426
|
+
AddonName?: string
|
|
427
|
+
/**
|
|
428
|
+
* addon的版本
|
|
429
|
+
*/
|
|
430
|
+
AddonVersion?: string
|
|
431
|
+
/**
|
|
432
|
+
* addon的参数,是一个json格式的base64转码后的字符串
|
|
433
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
434
|
+
*/
|
|
435
|
+
RawValues?: string
|
|
436
|
+
/**
|
|
437
|
+
* addon的状态
|
|
438
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
439
|
+
*/
|
|
440
|
+
Phase?: string
|
|
441
|
+
/**
|
|
442
|
+
* addon失败的原因
|
|
443
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
444
|
+
*/
|
|
445
|
+
Reason?: string
|
|
446
|
+
}
|
|
447
|
+
|
|
405
448
|
/**
|
|
406
449
|
* DescribeEdgeClusterUpgradeInfo请求参数结构体
|
|
407
450
|
*/
|
|
@@ -880,25 +923,21 @@ export interface ModifyClusterAttributeRequest {
|
|
|
880
923
|
}
|
|
881
924
|
|
|
882
925
|
/**
|
|
883
|
-
*
|
|
926
|
+
* DescribeClusterRoutes返回参数结构体
|
|
884
927
|
*/
|
|
885
|
-
export interface
|
|
886
|
-
/**
|
|
887
|
-
* 正在加入中的节点数量
|
|
888
|
-
*/
|
|
889
|
-
Joining: number
|
|
928
|
+
export interface DescribeClusterRoutesResponse {
|
|
890
929
|
/**
|
|
891
|
-
*
|
|
930
|
+
* 符合条件的实例数量。
|
|
892
931
|
*/
|
|
893
|
-
|
|
932
|
+
TotalCount?: number
|
|
894
933
|
/**
|
|
895
|
-
*
|
|
934
|
+
* 集群路由对象。
|
|
896
935
|
*/
|
|
897
|
-
|
|
936
|
+
RouteSet?: Array<RouteInfo>
|
|
898
937
|
/**
|
|
899
|
-
*
|
|
938
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
900
939
|
*/
|
|
901
|
-
|
|
940
|
+
RequestId?: string
|
|
902
941
|
}
|
|
903
942
|
|
|
904
943
|
/**
|
|
@@ -1024,6 +1063,20 @@ export interface ExtensionAddon {
|
|
|
1024
1063
|
AddonParam: string
|
|
1025
1064
|
}
|
|
1026
1065
|
|
|
1066
|
+
/**
|
|
1067
|
+
* DescribeAddonValues请求参数结构体
|
|
1068
|
+
*/
|
|
1069
|
+
export interface DescribeAddonValuesRequest {
|
|
1070
|
+
/**
|
|
1071
|
+
* 集群ID
|
|
1072
|
+
*/
|
|
1073
|
+
ClusterId: string
|
|
1074
|
+
/**
|
|
1075
|
+
* addon名称
|
|
1076
|
+
*/
|
|
1077
|
+
AddonName: string
|
|
1078
|
+
}
|
|
1079
|
+
|
|
1027
1080
|
/**
|
|
1028
1081
|
* DescribeResourceUsage请求参数结构体
|
|
1029
1082
|
*/
|
|
@@ -1136,6 +1189,28 @@ export interface DescribeClusterReleaseDetailsResponse {
|
|
|
1136
1189
|
RequestId?: string
|
|
1137
1190
|
}
|
|
1138
1191
|
|
|
1192
|
+
/**
|
|
1193
|
+
* 自动扩所容的节点
|
|
1194
|
+
*/
|
|
1195
|
+
export interface AutoscalingAdded {
|
|
1196
|
+
/**
|
|
1197
|
+
* 正在加入中的节点数量
|
|
1198
|
+
*/
|
|
1199
|
+
Joining: number
|
|
1200
|
+
/**
|
|
1201
|
+
* 初始化中的节点数量
|
|
1202
|
+
*/
|
|
1203
|
+
Initializing: number
|
|
1204
|
+
/**
|
|
1205
|
+
* 正常的节点数量
|
|
1206
|
+
*/
|
|
1207
|
+
Normal: number
|
|
1208
|
+
/**
|
|
1209
|
+
* 节点总数
|
|
1210
|
+
*/
|
|
1211
|
+
Total: number
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1139
1214
|
/**
|
|
1140
1215
|
* SyncPrometheusTemp返回参数结构体
|
|
1141
1216
|
*/
|
|
@@ -1375,6 +1450,11 @@ export interface ModifyPrometheusTemplateRequest {
|
|
|
1375
1450
|
Template: PrometheusTemplateModify
|
|
1376
1451
|
}
|
|
1377
1452
|
|
|
1453
|
+
/**
|
|
1454
|
+
* DescribeEncryptionStatus请求参数结构体
|
|
1455
|
+
*/
|
|
1456
|
+
export type DescribeEncryptionStatusRequest = null
|
|
1457
|
+
|
|
1378
1458
|
/**
|
|
1379
1459
|
* DeleteClusterVirtualNodePool请求参数结构体
|
|
1380
1460
|
*/
|
|
@@ -1423,26 +1503,17 @@ KeyName: image-cache-name
|
|
|
1423
1503
|
}
|
|
1424
1504
|
|
|
1425
1505
|
/**
|
|
1426
|
-
*
|
|
1506
|
+
* DeleteAddon请求参数结构体
|
|
1427
1507
|
*/
|
|
1428
|
-
export interface
|
|
1429
|
-
/**
|
|
1430
|
-
* 实例id
|
|
1431
|
-
*/
|
|
1432
|
-
InstanceId: string
|
|
1433
|
-
/**
|
|
1434
|
-
* 分页
|
|
1435
|
-
*/
|
|
1436
|
-
Offset?: number
|
|
1508
|
+
export interface DeleteAddonRequest {
|
|
1437
1509
|
/**
|
|
1438
|
-
*
|
|
1510
|
+
* 集群ID
|
|
1439
1511
|
*/
|
|
1440
|
-
|
|
1512
|
+
ClusterId: string
|
|
1441
1513
|
/**
|
|
1442
|
-
*
|
|
1443
|
-
支持ID,Name
|
|
1514
|
+
* addon名称
|
|
1444
1515
|
*/
|
|
1445
|
-
|
|
1516
|
+
AddonName: string
|
|
1446
1517
|
}
|
|
1447
1518
|
|
|
1448
1519
|
/**
|
|
@@ -2623,11 +2694,6 @@ export interface DescribeClusterNodePoolsRequest {
|
|
|
2623
2694
|
*/
|
|
2624
2695
|
export type DescribeClusterRouteTablesRequest = null
|
|
2625
2696
|
|
|
2626
|
-
/**
|
|
2627
|
-
* DescribeRegions请求参数结构体
|
|
2628
|
-
*/
|
|
2629
|
-
export type DescribeRegionsRequest = null
|
|
2630
|
-
|
|
2631
2697
|
/**
|
|
2632
2698
|
* DeleteClusterRoute请求参数结构体
|
|
2633
2699
|
*/
|
|
@@ -3186,6 +3252,36 @@ export interface DescribeClusterNodePoolDetailResponse {
|
|
|
3186
3252
|
RequestId?: string
|
|
3187
3253
|
}
|
|
3188
3254
|
|
|
3255
|
+
/**
|
|
3256
|
+
* DeletePrometheusConfig请求参数结构体
|
|
3257
|
+
*/
|
|
3258
|
+
export interface DeletePrometheusConfigRequest {
|
|
3259
|
+
/**
|
|
3260
|
+
* 实例id
|
|
3261
|
+
*/
|
|
3262
|
+
InstanceId: string
|
|
3263
|
+
/**
|
|
3264
|
+
* 集群类型
|
|
3265
|
+
*/
|
|
3266
|
+
ClusterType: string
|
|
3267
|
+
/**
|
|
3268
|
+
* 集群id
|
|
3269
|
+
*/
|
|
3270
|
+
ClusterId: string
|
|
3271
|
+
/**
|
|
3272
|
+
* 要删除的ServiceMonitor名字列表
|
|
3273
|
+
*/
|
|
3274
|
+
ServiceMonitors?: Array<string>
|
|
3275
|
+
/**
|
|
3276
|
+
* 要删除的PodMonitor名字列表
|
|
3277
|
+
*/
|
|
3278
|
+
PodMonitors?: Array<string>
|
|
3279
|
+
/**
|
|
3280
|
+
* 要删除的RawJobs名字列表
|
|
3281
|
+
*/
|
|
3282
|
+
RawJobs?: Array<string>
|
|
3283
|
+
}
|
|
3284
|
+
|
|
3189
3285
|
/**
|
|
3190
3286
|
* DescribeEKSContainerInstanceEvent请求参数结构体
|
|
3191
3287
|
*/
|
|
@@ -3943,17 +4039,9 @@ export interface DisableClusterAuditRequest {
|
|
|
3943
4039
|
}
|
|
3944
4040
|
|
|
3945
4041
|
/**
|
|
3946
|
-
*
|
|
4042
|
+
* DeleteBackupStorageLocation返回参数结构体
|
|
3947
4043
|
*/
|
|
3948
|
-
export interface
|
|
3949
|
-
/**
|
|
3950
|
-
* 聚合规则
|
|
3951
|
-
*/
|
|
3952
|
-
Records: Array<PrometheusRecordRuleYamlItem>
|
|
3953
|
-
/**
|
|
3954
|
-
* 总数
|
|
3955
|
-
*/
|
|
3956
|
-
Total: number
|
|
4044
|
+
export interface DeleteBackupStorageLocationResponse {
|
|
3957
4045
|
/**
|
|
3958
4046
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3959
4047
|
*/
|
|
@@ -4796,24 +4884,6 @@ export interface EdgeClusterInternalLB {
|
|
|
4796
4884
|
SubnetId?: Array<string>
|
|
4797
4885
|
}
|
|
4798
4886
|
|
|
4799
|
-
/**
|
|
4800
|
-
* DescribeClusterRoutes返回参数结构体
|
|
4801
|
-
*/
|
|
4802
|
-
export interface DescribeClusterRoutesResponse {
|
|
4803
|
-
/**
|
|
4804
|
-
* 符合条件的实例数量。
|
|
4805
|
-
*/
|
|
4806
|
-
TotalCount?: number
|
|
4807
|
-
/**
|
|
4808
|
-
* 集群路由对象。
|
|
4809
|
-
*/
|
|
4810
|
-
RouteSet?: Array<RouteInfo>
|
|
4811
|
-
/**
|
|
4812
|
-
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4813
|
-
*/
|
|
4814
|
-
RequestId?: string
|
|
4815
|
-
}
|
|
4816
|
-
|
|
4817
4887
|
/**
|
|
4818
4888
|
* DescribeAvailableClusterVersion请求参数结构体
|
|
4819
4889
|
*/
|
|
@@ -4940,6 +5010,16 @@ export interface DescribeEdgeLogSwitchesRequest {
|
|
|
4940
5010
|
ClusterIds: Array<string>
|
|
4941
5011
|
}
|
|
4942
5012
|
|
|
5013
|
+
/**
|
|
5014
|
+
* EnableEncryptionProtection返回参数结构体
|
|
5015
|
+
*/
|
|
5016
|
+
export interface EnableEncryptionProtectionResponse {
|
|
5017
|
+
/**
|
|
5018
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5019
|
+
*/
|
|
5020
|
+
RequestId?: string
|
|
5021
|
+
}
|
|
5022
|
+
|
|
4943
5023
|
/**
|
|
4944
5024
|
* DeletePrometheusTemplate请求参数结构体
|
|
4945
5025
|
*/
|
|
@@ -5621,13 +5701,13 @@ export interface RemoveNodeFromNodePoolRequest {
|
|
|
5621
5701
|
}
|
|
5622
5702
|
|
|
5623
5703
|
/**
|
|
5624
|
-
*
|
|
5704
|
+
* DescribeEncryptionStatus返回参数结构体
|
|
5625
5705
|
*/
|
|
5626
|
-
export interface
|
|
5706
|
+
export interface DescribeEncryptionStatusResponse {
|
|
5627
5707
|
/**
|
|
5628
|
-
*
|
|
5708
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5629
5709
|
*/
|
|
5630
|
-
|
|
5710
|
+
RequestId?: string
|
|
5631
5711
|
}
|
|
5632
5712
|
|
|
5633
5713
|
/**
|
|
@@ -5794,6 +5874,16 @@ CUCC:中国联通
|
|
|
5794
5874
|
InternetMaxBandwidthOut?: number
|
|
5795
5875
|
}
|
|
5796
5876
|
|
|
5877
|
+
/**
|
|
5878
|
+
* UpdateAddon返回参数结构体
|
|
5879
|
+
*/
|
|
5880
|
+
export interface UpdateAddonResponse {
|
|
5881
|
+
/**
|
|
5882
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5883
|
+
*/
|
|
5884
|
+
RequestId?: string
|
|
5885
|
+
}
|
|
5886
|
+
|
|
5797
5887
|
/**
|
|
5798
5888
|
* DescribeEKSContainerInstances请求参数结构体
|
|
5799
5889
|
*/
|
|
@@ -6110,6 +6200,24 @@ export interface DescribeClusterVirtualNodePoolsRequest {
|
|
|
6110
6200
|
ClusterId: string
|
|
6111
6201
|
}
|
|
6112
6202
|
|
|
6203
|
+
/**
|
|
6204
|
+
* DescribePrometheusRecordRules返回参数结构体
|
|
6205
|
+
*/
|
|
6206
|
+
export interface DescribePrometheusRecordRulesResponse {
|
|
6207
|
+
/**
|
|
6208
|
+
* 聚合规则
|
|
6209
|
+
*/
|
|
6210
|
+
Records: Array<PrometheusRecordRuleYamlItem>
|
|
6211
|
+
/**
|
|
6212
|
+
* 总数
|
|
6213
|
+
*/
|
|
6214
|
+
Total: number
|
|
6215
|
+
/**
|
|
6216
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6217
|
+
*/
|
|
6218
|
+
RequestId?: string
|
|
6219
|
+
}
|
|
6220
|
+
|
|
6113
6221
|
/**
|
|
6114
6222
|
* GetMostSuitableImageCache请求参数结构体
|
|
6115
6223
|
*/
|
|
@@ -6513,24 +6621,6 @@ export interface ModifyPrometheusAlertPolicyResponse {
|
|
|
6513
6621
|
RequestId?: string
|
|
6514
6622
|
}
|
|
6515
6623
|
|
|
6516
|
-
/**
|
|
6517
|
-
* DescribePrometheusClusterAgents返回参数结构体
|
|
6518
|
-
*/
|
|
6519
|
-
export interface DescribePrometheusClusterAgentsResponse {
|
|
6520
|
-
/**
|
|
6521
|
-
* 被关联集群信息
|
|
6522
|
-
*/
|
|
6523
|
-
Agents: Array<PrometheusAgentOverview>
|
|
6524
|
-
/**
|
|
6525
|
-
* 被关联集群总量
|
|
6526
|
-
*/
|
|
6527
|
-
Total: number
|
|
6528
|
-
/**
|
|
6529
|
-
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6530
|
-
*/
|
|
6531
|
-
RequestId?: string
|
|
6532
|
-
}
|
|
6533
|
-
|
|
6534
6624
|
/**
|
|
6535
6625
|
* 集群信息结构体
|
|
6536
6626
|
*/
|
|
@@ -6924,18 +7014,9 @@ export interface CreatePrometheusClusterAgentRequest {
|
|
|
6924
7014
|
}
|
|
6925
7015
|
|
|
6926
7016
|
/**
|
|
6927
|
-
*
|
|
7017
|
+
* DeleteEKSContainerInstances返回参数结构体
|
|
6928
7018
|
*/
|
|
6929
|
-
export interface
|
|
6930
|
-
/**
|
|
6931
|
-
* NodePools(节点池列表)
|
|
6932
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6933
|
-
*/
|
|
6934
|
-
NodePoolSet: Array<NodePool>
|
|
6935
|
-
/**
|
|
6936
|
-
* 资源总数
|
|
6937
|
-
*/
|
|
6938
|
-
TotalCount: number
|
|
7019
|
+
export interface DeleteEKSContainerInstancesResponse {
|
|
6939
7020
|
/**
|
|
6940
7021
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6941
7022
|
*/
|
|
@@ -7393,13 +7474,21 @@ export interface ECMEnhancedService {
|
|
|
7393
7474
|
}
|
|
7394
7475
|
|
|
7395
7476
|
/**
|
|
7396
|
-
*
|
|
7477
|
+
* CVM实例数据盘挂载配置
|
|
7397
7478
|
*/
|
|
7398
|
-
export interface
|
|
7479
|
+
export interface InstanceDataDiskMountSetting {
|
|
7399
7480
|
/**
|
|
7400
|
-
*
|
|
7481
|
+
* CVM实例类型
|
|
7401
7482
|
*/
|
|
7402
|
-
|
|
7483
|
+
InstanceType: string
|
|
7484
|
+
/**
|
|
7485
|
+
* 数据盘挂载信息
|
|
7486
|
+
*/
|
|
7487
|
+
DataDisks: Array<DataDisk>
|
|
7488
|
+
/**
|
|
7489
|
+
* CVM实例所属可用区
|
|
7490
|
+
*/
|
|
7491
|
+
Zone: string
|
|
7403
7492
|
}
|
|
7404
7493
|
|
|
7405
7494
|
/**
|
|
@@ -7419,14 +7508,9 @@ export interface EdgeClusterPublicLB {
|
|
|
7419
7508
|
}
|
|
7420
7509
|
|
|
7421
7510
|
/**
|
|
7422
|
-
*
|
|
7511
|
+
* EnableEncryptionProtection请求参数结构体
|
|
7423
7512
|
*/
|
|
7424
|
-
export
|
|
7425
|
-
/**
|
|
7426
|
-
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7427
|
-
*/
|
|
7428
|
-
RequestId?: string
|
|
7429
|
-
}
|
|
7513
|
+
export type EnableEncryptionProtectionRequest = null
|
|
7430
7514
|
|
|
7431
7515
|
/**
|
|
7432
7516
|
* 描述了实例的增强服务启用情况与其设置,如云安全,云监控等实例 Agent
|
|
@@ -7447,15 +7531,47 @@ export interface EnhancedService {
|
|
|
7447
7531
|
}
|
|
7448
7532
|
|
|
7449
7533
|
/**
|
|
7450
|
-
*
|
|
7534
|
+
* DescribeRouteTableConflicts返回参数结构体
|
|
7451
7535
|
*/
|
|
7452
|
-
export interface
|
|
7536
|
+
export interface DescribeRouteTableConflictsResponse {
|
|
7537
|
+
/**
|
|
7538
|
+
* 路由表是否冲突。
|
|
7539
|
+
*/
|
|
7540
|
+
HasConflict: boolean
|
|
7541
|
+
/**
|
|
7542
|
+
* 路由表冲突列表。
|
|
7543
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7544
|
+
*/
|
|
7545
|
+
RouteTableConflictSet: Array<RouteTableConflict>
|
|
7453
7546
|
/**
|
|
7454
7547
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7455
7548
|
*/
|
|
7456
7549
|
RequestId?: string
|
|
7457
7550
|
}
|
|
7458
7551
|
|
|
7552
|
+
/**
|
|
7553
|
+
* DescribePrometheusAlertRule请求参数结构体
|
|
7554
|
+
*/
|
|
7555
|
+
export interface DescribePrometheusAlertRuleRequest {
|
|
7556
|
+
/**
|
|
7557
|
+
* 实例id
|
|
7558
|
+
*/
|
|
7559
|
+
InstanceId: string
|
|
7560
|
+
/**
|
|
7561
|
+
* 分页
|
|
7562
|
+
*/
|
|
7563
|
+
Offset?: number
|
|
7564
|
+
/**
|
|
7565
|
+
* 分页
|
|
7566
|
+
*/
|
|
7567
|
+
Limit?: number
|
|
7568
|
+
/**
|
|
7569
|
+
* 过滤
|
|
7570
|
+
支持ID,Name
|
|
7571
|
+
*/
|
|
7572
|
+
Filters?: Array<Filter>
|
|
7573
|
+
}
|
|
7574
|
+
|
|
7459
7575
|
/**
|
|
7460
7576
|
* UninstallLogAgent请求参数结构体
|
|
7461
7577
|
*/
|
|
@@ -8041,6 +8157,24 @@ export interface DeleteClusterRouteTableResponse {
|
|
|
8041
8157
|
RequestId?: string
|
|
8042
8158
|
}
|
|
8043
8159
|
|
|
8160
|
+
/**
|
|
8161
|
+
* DescribeAddonValues返回参数结构体
|
|
8162
|
+
*/
|
|
8163
|
+
export interface DescribeAddonValuesResponse {
|
|
8164
|
+
/**
|
|
8165
|
+
* 参数列表,如果addon已安装,会使用已设置的的参数做渲染,是一个json格式的字符串
|
|
8166
|
+
*/
|
|
8167
|
+
Values?: string
|
|
8168
|
+
/**
|
|
8169
|
+
* addon支持的参数列表,使用默认值,是一个json格式的字符串
|
|
8170
|
+
*/
|
|
8171
|
+
DefaultValues?: string
|
|
8172
|
+
/**
|
|
8173
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
8174
|
+
*/
|
|
8175
|
+
RequestId?: string
|
|
8176
|
+
}
|
|
8177
|
+
|
|
8044
8178
|
/**
|
|
8045
8179
|
* DisableClusterDeletionProtection请求参数结构体
|
|
8046
8180
|
*/
|
|
@@ -9161,6 +9295,16 @@ export interface AutoUpgradeClusterLevel {
|
|
|
9161
9295
|
IsAutoUpgrade: boolean
|
|
9162
9296
|
}
|
|
9163
9297
|
|
|
9298
|
+
/**
|
|
9299
|
+
* DisableEncryptionProtection返回参数结构体
|
|
9300
|
+
*/
|
|
9301
|
+
export interface DisableEncryptionProtectionResponse {
|
|
9302
|
+
/**
|
|
9303
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
9304
|
+
*/
|
|
9305
|
+
RequestId?: string
|
|
9306
|
+
}
|
|
9307
|
+
|
|
9164
9308
|
/**
|
|
9165
9309
|
* CreateEKSCluster请求参数结构体
|
|
9166
9310
|
*/
|
|
@@ -9247,6 +9391,38 @@ export interface EnableEventPersistenceRequest {
|
|
|
9247
9391
|
TopicRegion?: string
|
|
9248
9392
|
}
|
|
9249
9393
|
|
|
9394
|
+
/**
|
|
9395
|
+
* ModifyClusterAuthenticationOptions返回参数结构体
|
|
9396
|
+
*/
|
|
9397
|
+
export interface ModifyClusterAuthenticationOptionsResponse {
|
|
9398
|
+
/**
|
|
9399
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
9400
|
+
*/
|
|
9401
|
+
RequestId?: string
|
|
9402
|
+
}
|
|
9403
|
+
|
|
9404
|
+
/**
|
|
9405
|
+
* UpdateAddon请求参数结构体
|
|
9406
|
+
*/
|
|
9407
|
+
export interface UpdateAddonRequest {
|
|
9408
|
+
/**
|
|
9409
|
+
* 集群ID
|
|
9410
|
+
*/
|
|
9411
|
+
ClusterId: string
|
|
9412
|
+
/**
|
|
9413
|
+
* addon名称
|
|
9414
|
+
*/
|
|
9415
|
+
AddonName: string
|
|
9416
|
+
/**
|
|
9417
|
+
* addon版本(不传默认不更新)
|
|
9418
|
+
*/
|
|
9419
|
+
AddonVersion?: string
|
|
9420
|
+
/**
|
|
9421
|
+
* addon的参数,是一个json格式的base64转码后的字符串(addon参数由DescribeAddonValues获取)
|
|
9422
|
+
*/
|
|
9423
|
+
RawValues?: string
|
|
9424
|
+
}
|
|
9425
|
+
|
|
9250
9426
|
/**
|
|
9251
9427
|
* ModifyClusterVirtualNodePool请求参数结构体
|
|
9252
9428
|
*/
|
|
@@ -9455,44 +9631,13 @@ export interface DeleteEdgeClusterInstancesRequest {
|
|
|
9455
9631
|
}
|
|
9456
9632
|
|
|
9457
9633
|
/**
|
|
9458
|
-
*
|
|
9634
|
+
* EnableEventPersistence返回参数结构体
|
|
9459
9635
|
*/
|
|
9460
|
-
export interface
|
|
9461
|
-
/**
|
|
9462
|
-
* 规则名称
|
|
9463
|
-
*/
|
|
9464
|
-
Name: string
|
|
9465
|
-
/**
|
|
9466
|
-
* prometheus语句
|
|
9467
|
-
*/
|
|
9468
|
-
Rule: string
|
|
9469
|
-
/**
|
|
9470
|
-
* 额外标签
|
|
9471
|
-
*/
|
|
9472
|
-
Labels: Array<Label>
|
|
9473
|
-
/**
|
|
9474
|
-
* 告警发送模板
|
|
9475
|
-
*/
|
|
9476
|
-
Template: string
|
|
9477
|
-
/**
|
|
9478
|
-
* 持续时间
|
|
9479
|
-
*/
|
|
9480
|
-
For: string
|
|
9481
|
-
/**
|
|
9482
|
-
* 该条规则的描述信息
|
|
9483
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
9484
|
-
*/
|
|
9485
|
-
Describe?: string
|
|
9486
|
-
/**
|
|
9487
|
-
* 参考prometheus rule中的annotations
|
|
9488
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
9489
|
-
*/
|
|
9490
|
-
Annotations?: Array<Label>
|
|
9636
|
+
export interface EnableEventPersistenceResponse {
|
|
9491
9637
|
/**
|
|
9492
|
-
*
|
|
9493
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
9638
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
9494
9639
|
*/
|
|
9495
|
-
|
|
9640
|
+
RequestId?: string
|
|
9496
9641
|
}
|
|
9497
9642
|
|
|
9498
9643
|
/**
|
|
@@ -9603,6 +9748,16 @@ export interface DescribeImagesResponse {
|
|
|
9603
9748
|
RequestId?: string
|
|
9604
9749
|
}
|
|
9605
9750
|
|
|
9751
|
+
/**
|
|
9752
|
+
* UninstallEdgeLogAgent请求参数结构体
|
|
9753
|
+
*/
|
|
9754
|
+
export interface UninstallEdgeLogAgentRequest {
|
|
9755
|
+
/**
|
|
9756
|
+
* 集群ID
|
|
9757
|
+
*/
|
|
9758
|
+
ClusterId: string
|
|
9759
|
+
}
|
|
9760
|
+
|
|
9606
9761
|
/**
|
|
9607
9762
|
* 集群master自定义参数
|
|
9608
9763
|
*/
|
|
@@ -10064,6 +10219,25 @@ export interface ModifyPrometheusGlobalNotificationRequest {
|
|
|
10064
10219
|
Notification: PrometheusNotificationItem
|
|
10065
10220
|
}
|
|
10066
10221
|
|
|
10222
|
+
/**
|
|
10223
|
+
* DescribeClusterNodePools返回参数结构体
|
|
10224
|
+
*/
|
|
10225
|
+
export interface DescribeClusterNodePoolsResponse {
|
|
10226
|
+
/**
|
|
10227
|
+
* NodePools(节点池列表)
|
|
10228
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10229
|
+
*/
|
|
10230
|
+
NodePoolSet: Array<NodePool>
|
|
10231
|
+
/**
|
|
10232
|
+
* 资源总数
|
|
10233
|
+
*/
|
|
10234
|
+
TotalCount: number
|
|
10235
|
+
/**
|
|
10236
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
10237
|
+
*/
|
|
10238
|
+
RequestId?: string
|
|
10239
|
+
}
|
|
10240
|
+
|
|
10067
10241
|
/**
|
|
10068
10242
|
* 不可用原因
|
|
10069
10243
|
*/
|
|
@@ -10127,14 +10301,9 @@ export interface DescribeEdgeCVMInstancesResponse {
|
|
|
10127
10301
|
}
|
|
10128
10302
|
|
|
10129
10303
|
/**
|
|
10130
|
-
*
|
|
10304
|
+
* DescribeRegions请求参数结构体
|
|
10131
10305
|
*/
|
|
10132
|
-
export
|
|
10133
|
-
/**
|
|
10134
|
-
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
10135
|
-
*/
|
|
10136
|
-
RequestId?: string
|
|
10137
|
-
}
|
|
10306
|
+
export type DescribeRegionsRequest = null
|
|
10138
10307
|
|
|
10139
10308
|
/**
|
|
10140
10309
|
* ModifyNodePoolDesiredCapacityAboutAsg请求参数结构体
|
|
@@ -10244,33 +10413,13 @@ alertmanager
|
|
|
10244
10413
|
}
|
|
10245
10414
|
|
|
10246
10415
|
/**
|
|
10247
|
-
*
|
|
10416
|
+
* DeleteECMInstances返回参数结构体
|
|
10248
10417
|
*/
|
|
10249
|
-
export interface
|
|
10250
|
-
/**
|
|
10251
|
-
* 实例id
|
|
10252
|
-
*/
|
|
10253
|
-
InstanceId: string
|
|
10254
|
-
/**
|
|
10255
|
-
* 集群类型
|
|
10256
|
-
*/
|
|
10257
|
-
ClusterType: string
|
|
10258
|
-
/**
|
|
10259
|
-
* 集群id
|
|
10260
|
-
*/
|
|
10261
|
-
ClusterId: string
|
|
10262
|
-
/**
|
|
10263
|
-
* 要删除的ServiceMonitor名字列表
|
|
10264
|
-
*/
|
|
10265
|
-
ServiceMonitors?: Array<string>
|
|
10266
|
-
/**
|
|
10267
|
-
* 要删除的PodMonitor名字列表
|
|
10268
|
-
*/
|
|
10269
|
-
PodMonitors?: Array<string>
|
|
10418
|
+
export interface DeleteECMInstancesResponse {
|
|
10270
10419
|
/**
|
|
10271
|
-
*
|
|
10420
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
10272
10421
|
*/
|
|
10273
|
-
|
|
10422
|
+
RequestId?: string
|
|
10274
10423
|
}
|
|
10275
10424
|
|
|
10276
10425
|
/**
|
|
@@ -10537,18 +10686,17 @@ export interface ImageRegistryCredential {
|
|
|
10537
10686
|
}
|
|
10538
10687
|
|
|
10539
10688
|
/**
|
|
10540
|
-
*
|
|
10689
|
+
* DescribePrometheusClusterAgents返回参数结构体
|
|
10541
10690
|
*/
|
|
10542
|
-
export interface
|
|
10691
|
+
export interface DescribePrometheusClusterAgentsResponse {
|
|
10543
10692
|
/**
|
|
10544
|
-
*
|
|
10693
|
+
* 被关联集群信息
|
|
10545
10694
|
*/
|
|
10546
|
-
|
|
10695
|
+
Agents: Array<PrometheusAgentOverview>
|
|
10547
10696
|
/**
|
|
10548
|
-
*
|
|
10549
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
10697
|
+
* 被关联集群总量
|
|
10550
10698
|
*/
|
|
10551
|
-
|
|
10699
|
+
Total: number
|
|
10552
10700
|
/**
|
|
10553
10701
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
10554
10702
|
*/
|
|
@@ -10582,6 +10730,16 @@ ID 按templateId过滤
|
|
|
10582
10730
|
Limit?: number
|
|
10583
10731
|
}
|
|
10584
10732
|
|
|
10733
|
+
/**
|
|
10734
|
+
* DeleteAddon返回参数结构体
|
|
10735
|
+
*/
|
|
10736
|
+
export interface DeleteAddonResponse {
|
|
10737
|
+
/**
|
|
10738
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
10739
|
+
*/
|
|
10740
|
+
RequestId?: string
|
|
10741
|
+
}
|
|
10742
|
+
|
|
10585
10743
|
/**
|
|
10586
10744
|
* DeleteClusterRouteTable请求参数结构体
|
|
10587
10745
|
*/
|
|
@@ -10613,6 +10771,47 @@ export interface InstanceExtraArgs {
|
|
|
10613
10771
|
Kubelet?: Array<string>
|
|
10614
10772
|
}
|
|
10615
10773
|
|
|
10774
|
+
/**
|
|
10775
|
+
* Prometheus告警规则
|
|
10776
|
+
*/
|
|
10777
|
+
export interface PrometheusAlertRule {
|
|
10778
|
+
/**
|
|
10779
|
+
* 规则名称
|
|
10780
|
+
*/
|
|
10781
|
+
Name: string
|
|
10782
|
+
/**
|
|
10783
|
+
* prometheus语句
|
|
10784
|
+
*/
|
|
10785
|
+
Rule: string
|
|
10786
|
+
/**
|
|
10787
|
+
* 额外标签
|
|
10788
|
+
*/
|
|
10789
|
+
Labels: Array<Label>
|
|
10790
|
+
/**
|
|
10791
|
+
* 告警发送模板
|
|
10792
|
+
*/
|
|
10793
|
+
Template: string
|
|
10794
|
+
/**
|
|
10795
|
+
* 持续时间
|
|
10796
|
+
*/
|
|
10797
|
+
For: string
|
|
10798
|
+
/**
|
|
10799
|
+
* 该条规则的描述信息
|
|
10800
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10801
|
+
*/
|
|
10802
|
+
Describe?: string
|
|
10803
|
+
/**
|
|
10804
|
+
* 参考prometheus rule中的annotations
|
|
10805
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10806
|
+
*/
|
|
10807
|
+
Annotations?: Array<Label>
|
|
10808
|
+
/**
|
|
10809
|
+
* 告警规则状态
|
|
10810
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10811
|
+
*/
|
|
10812
|
+
RuleState?: number
|
|
10813
|
+
}
|
|
10814
|
+
|
|
10616
10815
|
/**
|
|
10617
10816
|
* AcquireClusterAdminRole请求参数结构体
|
|
10618
10817
|
*/
|
|
@@ -11421,6 +11620,28 @@ export interface DeletePrometheusRecordRuleYamlRequest {
|
|
|
11421
11620
|
Names: Array<string>
|
|
11422
11621
|
}
|
|
11423
11622
|
|
|
11623
|
+
/**
|
|
11624
|
+
* InstallAddon请求参数结构体
|
|
11625
|
+
*/
|
|
11626
|
+
export interface InstallAddonRequest {
|
|
11627
|
+
/**
|
|
11628
|
+
* 集群ID
|
|
11629
|
+
*/
|
|
11630
|
+
ClusterId: string
|
|
11631
|
+
/**
|
|
11632
|
+
* addon名称
|
|
11633
|
+
*/
|
|
11634
|
+
AddonName: string
|
|
11635
|
+
/**
|
|
11636
|
+
* addon版本(不传默认安装最新版本)
|
|
11637
|
+
*/
|
|
11638
|
+
AddonVersion?: string
|
|
11639
|
+
/**
|
|
11640
|
+
* addon的参数,是一个json格式的base64转码后的字符串(addon参数由DescribeAddonValues获取)
|
|
11641
|
+
*/
|
|
11642
|
+
RawValues?: string
|
|
11643
|
+
}
|
|
11644
|
+
|
|
11424
11645
|
/**
|
|
11425
11646
|
* 某个节点升级前检查结果
|
|
11426
11647
|
*/
|
|
@@ -11498,13 +11719,17 @@ export interface DescribeClusterCommonNamesResponse {
|
|
|
11498
11719
|
}
|
|
11499
11720
|
|
|
11500
11721
|
/**
|
|
11501
|
-
*
|
|
11722
|
+
* DescribeAddon请求参数结构体
|
|
11502
11723
|
*/
|
|
11503
|
-
export interface
|
|
11724
|
+
export interface DescribeAddonRequest {
|
|
11504
11725
|
/**
|
|
11505
|
-
*
|
|
11726
|
+
* 集群ID
|
|
11506
11727
|
*/
|
|
11507
|
-
|
|
11728
|
+
ClusterId: string
|
|
11729
|
+
/**
|
|
11730
|
+
* addon名称(不传时会返回集群下全部的addon)
|
|
11731
|
+
*/
|
|
11732
|
+
AddonName?: string
|
|
11508
11733
|
}
|
|
11509
11734
|
|
|
11510
11735
|
/**
|
|
@@ -11640,23 +11865,20 @@ export interface RouteTableConflict {
|
|
|
11640
11865
|
}
|
|
11641
11866
|
|
|
11642
11867
|
/**
|
|
11643
|
-
*
|
|
11868
|
+
* InstallAddon返回参数结构体
|
|
11644
11869
|
*/
|
|
11645
|
-
export interface
|
|
11646
|
-
/**
|
|
11647
|
-
* CVM实例类型
|
|
11648
|
-
*/
|
|
11649
|
-
InstanceType: string
|
|
11650
|
-
/**
|
|
11651
|
-
* 数据盘挂载信息
|
|
11652
|
-
*/
|
|
11653
|
-
DataDisks: Array<DataDisk>
|
|
11870
|
+
export interface InstallAddonResponse {
|
|
11654
11871
|
/**
|
|
11655
|
-
*
|
|
11872
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
11656
11873
|
*/
|
|
11657
|
-
|
|
11874
|
+
RequestId?: string
|
|
11658
11875
|
}
|
|
11659
11876
|
|
|
11877
|
+
/**
|
|
11878
|
+
* DisableEncryptionProtection请求参数结构体
|
|
11879
|
+
*/
|
|
11880
|
+
export type DisableEncryptionProtectionRequest = null
|
|
11881
|
+
|
|
11660
11882
|
/**
|
|
11661
11883
|
* 托管prometheus实例概览
|
|
11662
11884
|
*/
|