tencentcloud-sdk-nodejs-tke 4.0.497 → 4.0.498

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.
@@ -31,6 +31,23 @@ export interface EksCiVolume {
31
31
  */
32
32
  NfsVolumes?: Array<NfsVolume>;
33
33
  }
34
+ /**
35
+ * GetTkeAppChartList请求参数结构体
36
+ */
37
+ export interface GetTkeAppChartListRequest {
38
+ /**
39
+ * app类型,取值log,scheduler,network,storage,monitor,dns,image,other,invisible
40
+ */
41
+ Kind?: string;
42
+ /**
43
+ * app支持的操作系统,取值arm32、arm64、amd64
44
+ */
45
+ Arch?: string;
46
+ /**
47
+ * 集群类型,取值tke、eks
48
+ */
49
+ ClusterType?: string;
50
+ }
34
51
  /**
35
52
  * DescribeEdgeCVMInstances请求参数结构体
36
53
  */
@@ -249,6 +266,59 @@ export interface DescribeEdgeClusterInstancesResponse {
249
266
  */
250
267
  RequestId?: string;
251
268
  }
269
+ /**
270
+ * UpgradeClusterRelease请求参数结构体
271
+ */
272
+ export interface UpgradeClusterReleaseRequest {
273
+ /**
274
+ * 集群ID
275
+ */
276
+ ClusterId: string;
277
+ /**
278
+ * 自定义的应用名称
279
+ */
280
+ Name: string;
281
+ /**
282
+ * 应用命名空间
283
+ */
284
+ Namespace: string;
285
+ /**
286
+ * 制品名称或从第三方repo 安装chart时,制品压缩包下载地址, 不支持重定向类型chart 地址,结尾为*.tgz
287
+ */
288
+ Chart: string;
289
+ /**
290
+ * 自定义参数,覆盖chart 中values.yaml 中的参数
291
+ */
292
+ Values?: ReleaseValues;
293
+ /**
294
+ * 制品来源,范围:tke-market/tcr/other
295
+ */
296
+ ChartFrom?: string;
297
+ /**
298
+ * 制品版本( 从第三安装时,不传这个参数)
299
+ */
300
+ ChartVersion?: string;
301
+ /**
302
+ * 制品仓库URL地址
303
+ */
304
+ ChartRepoURL?: string;
305
+ /**
306
+ * 制品访问用户名
307
+ */
308
+ Username?: string;
309
+ /**
310
+ * 制品访问密码
311
+ */
312
+ Password?: string;
313
+ /**
314
+ * 制品命名空间
315
+ */
316
+ ChartNamespace?: string;
317
+ /**
318
+ * 集群类型,支持传 tke, eks, tkeedge, exernal(注册集群)
319
+ */
320
+ ClusterType?: string;
321
+ }
252
322
  /**
253
323
  * DescribeEdgeClusterUpgradeInfo请求参数结构体
254
324
  */
@@ -548,6 +618,26 @@ export interface UpdateImageCacheRequest {
548
618
  * 镜像缓存名称
549
619
  */
550
620
  ImageCacheName?: string;
621
+ /**
622
+ * 镜像仓库凭证数组
623
+ */
624
+ ImageRegistryCredentials?: Array<ImageRegistryCredential>;
625
+ /**
626
+ * 用于制作镜像缓存的容器镜像列表
627
+ */
628
+ Images?: Array<string>;
629
+ /**
630
+ * 镜像缓存的大小。默认为20 GiB。取值范围参考[云硬盘类型](https://cloud.tencent.com/document/product/362/2353)中的高性能云盘类型的大小限制。
631
+ */
632
+ ImageCacheSize?: number;
633
+ /**
634
+ * 镜像缓存保留时间天数,过期将会自动清理,默认为0,永不过期。
635
+ */
636
+ RetentionDays?: number;
637
+ /**
638
+ * 安全组Id
639
+ */
640
+ SecurityGroupIds?: Array<string>;
551
641
  }
552
642
  /**
553
643
  * 手动加入的节点
@@ -854,6 +944,20 @@ export interface DisableVpcCniNetworkTypeRequest {
854
944
  */
855
945
  ClusterId: string;
856
946
  }
947
+ /**
948
+ * DescribeClusterReleaseDetails返回参数结构体
949
+ */
950
+ export interface DescribeClusterReleaseDetailsResponse {
951
+ /**
952
+ * 应用详情
953
+ 注意:此字段可能返回 null,表示取不到有效值。
954
+ */
955
+ Release: ReleaseDetails;
956
+ /**
957
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
958
+ */
959
+ RequestId?: string;
960
+ }
857
961
  /**
858
962
  * SyncPrometheusTemp返回参数结构体
859
963
  */
@@ -889,6 +993,23 @@ export interface CreatePrometheusDashboardResponse {
889
993
  */
890
994
  RequestId?: string;
891
995
  }
996
+ /**
997
+ * CancelClusterRelease请求参数结构体
998
+ */
999
+ export interface CancelClusterReleaseRequest {
1000
+ /**
1001
+ * 应用ID
1002
+ */
1003
+ ID: string;
1004
+ /**
1005
+ * 集群ID
1006
+ */
1007
+ ClusterId?: string;
1008
+ /**
1009
+ * 集群类型
1010
+ */
1011
+ ClusterType?: string;
1012
+ }
892
1013
  /**
893
1014
  * DescribeTKEEdgeClusterStatus返回参数结构体
894
1015
  */
@@ -1617,6 +1738,27 @@ export interface DeletePrometheusAlertRuleResponse {
1617
1738
  */
1618
1739
  RequestId?: string;
1619
1740
  }
1741
+ /**
1742
+ * DescribeClusterPendingReleases请求参数结构体
1743
+ */
1744
+ export interface DescribeClusterPendingReleasesRequest {
1745
+ /**
1746
+ * 集群ID
1747
+ */
1748
+ ClusterId: string;
1749
+ /**
1750
+ * 返回数量限制,默认20,最大100
1751
+ */
1752
+ Limit?: number;
1753
+ /**
1754
+ * 偏移量,默认0
1755
+ */
1756
+ Offset?: number;
1757
+ /**
1758
+ * 集群类型
1759
+ */
1760
+ ClusterType?: string;
1761
+ }
1620
1762
  /**
1621
1763
  * DeletePrometheusConfig返回参数结构体
1622
1764
  */
@@ -2138,6 +2280,25 @@ export interface DescribeClustersResponse {
2138
2280
  */
2139
2281
  RequestId?: string;
2140
2282
  }
2283
+ /**
2284
+ * DescribeClusterReleaseHistory返回参数结构体
2285
+ */
2286
+ export interface DescribeClusterReleaseHistoryResponse {
2287
+ /**
2288
+ * 已安装应用版本历史
2289
+ 注意:此字段可能返回 null,表示取不到有效值。
2290
+ */
2291
+ ReleaseHistorySet: Array<ReleaseHistory>;
2292
+ /**
2293
+ * 总数量
2294
+ 注意:此字段可能返回 null,表示取不到有效值。
2295
+ */
2296
+ Total: number;
2297
+ /**
2298
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2299
+ */
2300
+ RequestId?: string;
2301
+ }
2141
2302
  /**
2142
2303
  * DescribeImages请求参数结构体
2143
2304
  */
@@ -3308,28 +3469,29 @@ export interface ModifyPrometheusAgentExternalLabelsResponse {
3308
3469
  RequestId?: string;
3309
3470
  }
3310
3471
  /**
3311
- * 路由表冲突对象
3472
+ * RollbackClusterRelease请求参数结构体
3312
3473
  */
3313
- export interface RouteTableConflict {
3474
+ export interface RollbackClusterReleaseRequest {
3314
3475
  /**
3315
- * 路由表类型。
3476
+ * 集群ID
3316
3477
  */
3317
- RouteTableType: string;
3478
+ ClusterId: string;
3318
3479
  /**
3319
- * 路由表CIDR。
3320
- 注意:此字段可能返回 null,表示取不到有效值。
3321
- */
3322
- RouteTableCidrBlock: string;
3480
+ * 应用名称
3481
+ */
3482
+ Name: string;
3323
3483
  /**
3324
- * 路由表名称。
3325
- 注意:此字段可能返回 null,表示取不到有效值。
3326
- */
3327
- RouteTableName: string;
3484
+ * 应用命名空间
3485
+ */
3486
+ Namespace: string;
3328
3487
  /**
3329
- * 路由表ID。
3330
- 注意:此字段可能返回 null,表示取不到有效值。
3331
- */
3332
- RouteTableId: string;
3488
+ * 回滚版本号
3489
+ */
3490
+ Revision: number;
3491
+ /**
3492
+ * 集群类型
3493
+ */
3494
+ ClusterType?: string;
3333
3495
  }
3334
3496
  /**
3335
3497
  * DeleteClusterInstances请求参数结构体
@@ -3589,6 +3751,27 @@ export interface CreateEdgeCVMInstancesRequest {
3589
3751
  */
3590
3752
  EnableEni?: boolean;
3591
3753
  }
3754
+ /**
3755
+ * DescribeClusterReleaseHistory请求参数结构体
3756
+ */
3757
+ export interface DescribeClusterReleaseHistoryRequest {
3758
+ /**
3759
+ * 集群ID
3760
+ */
3761
+ ClusterId: string;
3762
+ /**
3763
+ * 应用名称
3764
+ */
3765
+ Name: string;
3766
+ /**
3767
+ * 应用所在命名空间
3768
+ */
3769
+ Namespace: string;
3770
+ /**
3771
+ * 集群类型
3772
+ */
3773
+ ClusterType?: string;
3774
+ }
3592
3775
  /**
3593
3776
  * 加入存量节点时的节点池选项
3594
3777
  */
@@ -3913,6 +4096,20 @@ export interface DescribeAvailableClusterVersionRequest {
3913
4096
  */
3914
4097
  ClusterIds?: Array<string>;
3915
4098
  }
4099
+ /**
4100
+ * UpgradeClusterRelease返回参数结构体
4101
+ */
4102
+ export interface UpgradeClusterReleaseResponse {
4103
+ /**
4104
+ * 应用详情
4105
+ 注意:此字段可能返回 null,表示取不到有效值。
4106
+ */
4107
+ Release: PendingRelease;
4108
+ /**
4109
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4110
+ */
4111
+ RequestId?: string;
4112
+ }
3916
4113
  /**
3917
4114
  * DescribePrometheusAlertPolicy请求参数结构体
3918
4115
  */
@@ -4357,13 +4554,14 @@ export interface CreateClusterEndpointRequest {
4357
4554
  ExtensiveParameters?: string;
4358
4555
  }
4359
4556
  /**
4360
- * DeletePrometheusClusterAgent返回参数结构体
4557
+ * 探针在容器内执行检测命令参数类型
4361
4558
  */
4362
- export interface DeletePrometheusClusterAgentResponse {
4559
+ export interface Exec {
4363
4560
  /**
4364
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4365
- */
4366
- RequestId?: string;
4561
+ * 容器内检测的命令
4562
+ 注意:此字段可能返回 null,表示取不到有效值。
4563
+ */
4564
+ Commands?: Array<string>;
4367
4565
  }
4368
4566
  /**
4369
4567
  * DescribePrometheusInstance返回参数结构体
@@ -5134,6 +5332,20 @@ export interface PrometheusTemplateModify {
5134
5332
  */
5135
5333
  AlertDetailRules?: Array<PrometheusAlertRuleDetail>;
5136
5334
  }
5335
+ /**
5336
+ * RollbackClusterRelease返回参数结构体
5337
+ */
5338
+ export interface RollbackClusterReleaseResponse {
5339
+ /**
5340
+ * 应用详情
5341
+ 注意:此字段可能返回 null,表示取不到有效值。
5342
+ */
5343
+ Release: PendingRelease;
5344
+ /**
5345
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5346
+ */
5347
+ RequestId?: string;
5348
+ }
5137
5349
  /**
5138
5350
  * 集群版本信息
5139
5351
  */
@@ -5270,6 +5482,35 @@ export interface DNSConfigOption {
5270
5482
  */
5271
5483
  Value: string;
5272
5484
  }
5485
+ /**
5486
+ * DescribeClusterReleases返回参数结构体
5487
+ */
5488
+ export interface DescribeClusterReleasesResponse {
5489
+ /**
5490
+ * 数量限制
5491
+ 注意:此字段可能返回 null,表示取不到有效值。
5492
+ */
5493
+ Limit: number;
5494
+ /**
5495
+ * 偏移量
5496
+ 注意:此字段可能返回 null,表示取不到有效值。
5497
+ */
5498
+ Offset: number;
5499
+ /**
5500
+ * 已安装应用列表
5501
+ 注意:此字段可能返回 null,表示取不到有效值。
5502
+ */
5503
+ ReleaseSet: Array<Release>;
5504
+ /**
5505
+ * 已安装应用总数量
5506
+ 注意:此字段可能返回 null,表示取不到有效值。
5507
+ */
5508
+ Total: number;
5509
+ /**
5510
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5511
+ */
5512
+ RequestId?: string;
5513
+ }
5273
5514
  /**
5274
5515
  * AddNodeToNodePool请求参数结构体
5275
5516
  */
@@ -5314,21 +5555,42 @@ export interface ModifyPrometheusGlobalNotificationResponse {
5314
5555
  RequestId?: string;
5315
5556
  }
5316
5557
  /**
5317
- * ForwardTKEEdgeApplicationRequestV3返回参数结构体
5558
+ * UninstallClusterRelease请求参数结构体
5318
5559
  */
5319
- export interface ForwardTKEEdgeApplicationRequestV3Response {
5560
+ export interface UninstallClusterReleaseRequest {
5320
5561
  /**
5321
- * 请求集群addon后返回的数据
5562
+ * 集群ID
5322
5563
  */
5323
- ResponseBody: string;
5564
+ ClusterId: string;
5324
5565
  /**
5325
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5566
+ * 应用名称
5326
5567
  */
5327
- RequestId?: string;
5328
- }
5329
- /**
5330
- * ModifyPrometheusConfig请求参数结构体
5331
- */
5568
+ Name: string;
5569
+ /**
5570
+ * 应用命名空间
5571
+ */
5572
+ Namespace: string;
5573
+ /**
5574
+ * 集群类型
5575
+ */
5576
+ ClusterType?: string;
5577
+ }
5578
+ /**
5579
+ * ForwardTKEEdgeApplicationRequestV3返回参数结构体
5580
+ */
5581
+ export interface ForwardTKEEdgeApplicationRequestV3Response {
5582
+ /**
5583
+ * 请求集群addon后返回的数据
5584
+ */
5585
+ ResponseBody: string;
5586
+ /**
5587
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5588
+ */
5589
+ RequestId?: string;
5590
+ }
5591
+ /**
5592
+ * ModifyPrometheusConfig请求参数结构体
5593
+ */
5332
5594
  export interface ModifyPrometheusConfigRequest {
5333
5595
  /**
5334
5596
  * 实例id
@@ -5777,14 +6039,25 @@ export interface DescribeClusterLevelAttributeRequest {
5777
6039
  ClusterID?: string;
5778
6040
  }
5779
6041
  /**
5780
- * 探针在容器内执行检测命令参数类型
6042
+ * DescribeClusterReleaseDetails请求参数结构体
5781
6043
  */
5782
- export interface Exec {
6044
+ export interface DescribeClusterReleaseDetailsRequest {
5783
6045
  /**
5784
- * 容器内检测的命令
5785
- 注意:此字段可能返回 null,表示取不到有效值。
5786
- */
5787
- Commands?: Array<string>;
6046
+ * 集群ID
6047
+ */
6048
+ ClusterId: string;
6049
+ /**
6050
+ * 应用名称
6051
+ */
6052
+ Name: string;
6053
+ /**
6054
+ * 应用所在命名空间
6055
+ */
6056
+ Namespace: string;
6057
+ /**
6058
+ * 集群类型
6059
+ */
6060
+ ClusterType?: string;
5788
6061
  }
5789
6062
  /**
5790
6063
  * CreateECMInstances请求参数结构体
@@ -5839,6 +6112,35 @@ export interface CreateECMInstancesRequest {
5839
6112
  */
5840
6113
  SecurityGroupIds?: Array<string>;
5841
6114
  }
6115
+ /**
6116
+ * DescribeClusterReleases请求参数结构体
6117
+ */
6118
+ export interface DescribeClusterReleasesRequest {
6119
+ /**
6120
+ * 集群id
6121
+ */
6122
+ ClusterId: string;
6123
+ /**
6124
+ * 每页数量限制
6125
+ */
6126
+ Limit?: number;
6127
+ /**
6128
+ * 页偏移量
6129
+ */
6130
+ Offset?: number;
6131
+ /**
6132
+ * helm Release 安装的namespace
6133
+ */
6134
+ Namespace?: string;
6135
+ /**
6136
+ * helm Release 的名字
6137
+ */
6138
+ ReleaseName?: string;
6139
+ /**
6140
+ * helm Chart 的名字
6141
+ */
6142
+ ChartName?: string;
6143
+ }
5842
6144
  /**
5843
6145
  * 接入k8s 的认证信息
5844
6146
  */
@@ -5871,6 +6173,35 @@ export interface DescribePrometheusOverviewsRequest {
5871
6173
  */
5872
6174
  Filters?: Array<Filter>;
5873
6175
  }
6176
+ /**
6177
+ * DescribeClusterPendingReleases返回参数结构体
6178
+ */
6179
+ export interface DescribeClusterPendingReleasesResponse {
6180
+ /**
6181
+ * 正在安装中应用列表
6182
+ 注意:此字段可能返回 null,表示取不到有效值。
6183
+ */
6184
+ ReleaseSet: Array<PendingRelease>;
6185
+ /**
6186
+ * 每页返回数量限制
6187
+ 注意:此字段可能返回 null,表示取不到有效值。
6188
+ */
6189
+ Limit: number;
6190
+ /**
6191
+ * 页偏移量
6192
+ 注意:此字段可能返回 null,表示取不到有效值。
6193
+ */
6194
+ Offset: number;
6195
+ /**
6196
+ * 总数量
6197
+ 注意:此字段可能返回 null,表示取不到有效值。
6198
+ */
6199
+ Total: number;
6200
+ /**
6201
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6202
+ */
6203
+ RequestId?: string;
6204
+ }
5874
6205
  /**
5875
6206
  * 描述了k8s节点数据盘相关配置与信息。
5876
6207
  */
@@ -6274,6 +6605,15 @@ export interface DescribeClusterAuthenticationOptionsResponse {
6274
6605
  */
6275
6606
  RequestId?: string;
6276
6607
  }
6608
+ /**
6609
+ * DeletePrometheusClusterAgent返回参数结构体
6610
+ */
6611
+ export interface DeletePrometheusClusterAgentResponse {
6612
+ /**
6613
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6614
+ */
6615
+ RequestId?: string;
6616
+ }
6277
6617
  /**
6278
6618
  * CreateClusterRelease请求参数结构体
6279
6619
  */
@@ -6353,6 +6693,84 @@ export interface AddClusterCIDRResponse {
6353
6693
  */
6354
6694
  RequestId?: string;
6355
6695
  }
6696
+ /**
6697
+ * 应用市场的安装应用详情
6698
+ */
6699
+ export interface ReleaseDetails {
6700
+ /**
6701
+ * 应用名称
6702
+ */
6703
+ Name: string;
6704
+ /**
6705
+ * 应用所在命名空间
6706
+ */
6707
+ Namespace: string;
6708
+ /**
6709
+ * 应用当前版本
6710
+ 注意:此字段可能返回 null,表示取不到有效值。
6711
+ */
6712
+ Version: number;
6713
+ /**
6714
+ * 应用状态
6715
+ 注意:此字段可能返回 null,表示取不到有效值。
6716
+ */
6717
+ Status: string;
6718
+ /**
6719
+ * 应用描述
6720
+ 注意:此字段可能返回 null,表示取不到有效值。
6721
+ */
6722
+ Description: string;
6723
+ /**
6724
+ * 应用提示
6725
+ 注意:此字段可能返回 null,表示取不到有效值。
6726
+ */
6727
+ Notes: string;
6728
+ /**
6729
+ * 用户自定义参数
6730
+ 注意:此字段可能返回 null,表示取不到有效值。
6731
+ */
6732
+ Config: string;
6733
+ /**
6734
+ * 应用资源详情
6735
+ 注意:此字段可能返回 null,表示取不到有效值。
6736
+ */
6737
+ Manifest: string;
6738
+ /**
6739
+ * 应用制品版本
6740
+ 注意:此字段可能返回 null,表示取不到有效值。
6741
+ */
6742
+ ChartVersion: string;
6743
+ /**
6744
+ * 应用制品名称
6745
+ 注意:此字段可能返回 null,表示取不到有效值。
6746
+ */
6747
+ ChartName: string;
6748
+ /**
6749
+ * 应用制品描述
6750
+ 注意:此字段可能返回 null,表示取不到有效值。
6751
+ */
6752
+ ChartDescription: string;
6753
+ /**
6754
+ * 应用制品app版本
6755
+ 注意:此字段可能返回 null,表示取不到有效值。
6756
+ */
6757
+ AppVersion: string;
6758
+ /**
6759
+ * 应用首次部署时间
6760
+ 注意:此字段可能返回 null,表示取不到有效值。
6761
+ */
6762
+ FirstDeployedTime: string;
6763
+ /**
6764
+ * 应用最近部署时间
6765
+ 注意:此字段可能返回 null,表示取不到有效值。
6766
+ */
6767
+ LastDeployedTime: string;
6768
+ /**
6769
+ * 应用参数
6770
+ 注意:此字段可能返回 null,表示取不到有效值。
6771
+ */
6772
+ ComputedValues: string;
6773
+ }
6356
6774
  /**
6357
6775
  * DescribePrometheusInstanceInitStatus请求参数结构体
6358
6776
  */
@@ -6446,21 +6864,21 @@ export interface CreatePrometheusAlertPolicyRequest {
6446
6864
  AlertRule: PrometheusAlertPolicyItem;
6447
6865
  }
6448
6866
  /**
6449
- * GetTkeAppChartList请求参数结构体
6867
+ * DescribeImageCaches返回参数结构体
6450
6868
  */
6451
- export interface GetTkeAppChartListRequest {
6869
+ export interface DescribeImageCachesResponse {
6452
6870
  /**
6453
- * app类型,取值log,scheduler,network,storage,monitor,dns,image,other,invisible
6871
+ * 镜像缓存总数
6454
6872
  */
6455
- Kind?: string;
6873
+ TotalCount: number;
6456
6874
  /**
6457
- * app支持的操作系统,取值arm32、arm64、amd64
6875
+ * 镜像缓存信息列表
6458
6876
  */
6459
- Arch?: string;
6877
+ ImageCaches: Array<ImageCache>;
6460
6878
  /**
6461
- * 集群类型,取值tke、eks
6879
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6462
6880
  */
6463
- ClusterType?: string;
6881
+ RequestId?: string;
6464
6882
  }
6465
6883
  /**
6466
6884
  * 资源使用明细
@@ -6677,23 +7095,6 @@ export interface DisableClusterDeletionProtectionRequest {
6677
7095
  */
6678
7096
  ClusterId: string;
6679
7097
  }
6680
- /**
6681
- * DescribeImageCaches返回参数结构体
6682
- */
6683
- export interface DescribeImageCachesResponse {
6684
- /**
6685
- * 镜像缓存总数
6686
- */
6687
- TotalCount: number;
6688
- /**
6689
- * 镜像缓存信息列表
6690
- */
6691
- ImageCaches: Array<ImageCache>;
6692
- /**
6693
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6694
- */
6695
- RequestId?: string;
6696
- }
6697
7098
  /**
6698
7099
  * prometheus一个job的targets
6699
7100
  */
@@ -6907,6 +7308,20 @@ export interface SyncPrometheusTemplateResponse {
6907
7308
  */
6908
7309
  RequestId?: string;
6909
7310
  }
7311
+ /**
7312
+ * UninstallClusterRelease返回参数结构体
7313
+ */
7314
+ export interface UninstallClusterReleaseResponse {
7315
+ /**
7316
+ * 应用详情
7317
+ 注意:此字段可能返回 null,表示取不到有效值。
7318
+ */
7319
+ Release: PendingRelease;
7320
+ /**
7321
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7322
+ */
7323
+ RequestId?: string;
7324
+ }
6910
7325
  /**
6911
7326
  * 集群伸缩组属性
6912
7327
  */
@@ -7157,6 +7572,20 @@ export interface InstanceAdvancedSettings {
7157
7572
  */
7158
7573
  Taints: Array<Taint>;
7159
7574
  }
7575
+ /**
7576
+ * CancelClusterRelease返回参数结构体
7577
+ */
7578
+ export interface CancelClusterReleaseResponse {
7579
+ /**
7580
+ * 应用信息
7581
+ 注意:此字段可能返回 null,表示取不到有效值。
7582
+ */
7583
+ Release: PendingRelease;
7584
+ /**
7585
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7586
+ */
7587
+ RequestId?: string;
7588
+ }
7160
7589
  /**
7161
7590
  * UpdateEdgeClusterVersion返回参数结构体
7162
7591
  */
@@ -7327,6 +7756,49 @@ export interface PrometheusAlertRuleDetail {
7327
7756
  */
7328
7757
  Interval?: string;
7329
7758
  }
7759
+ /**
7760
+ * 应用市场中部署的应用版本历史
7761
+ */
7762
+ export interface ReleaseHistory {
7763
+ /**
7764
+ * 应用名称
7765
+ */
7766
+ Name: string;
7767
+ /**
7768
+ * 应用命名空间
7769
+ */
7770
+ Namespace: string;
7771
+ /**
7772
+ * 应用版本
7773
+ 注意:此字段可能返回 null,表示取不到有效值。
7774
+ */
7775
+ Revision: number;
7776
+ /**
7777
+ * 应用状态
7778
+ 注意:此字段可能返回 null,表示取不到有效值。
7779
+ */
7780
+ Status: string;
7781
+ /**
7782
+ * 应用制品名称
7783
+ 注意:此字段可能返回 null,表示取不到有效值。
7784
+ */
7785
+ Chart: string;
7786
+ /**
7787
+ * 应用制品版本
7788
+ 注意:此字段可能返回 null,表示取不到有效值。
7789
+ */
7790
+ AppVersion: string;
7791
+ /**
7792
+ * 应用更新时间
7793
+ 注意:此字段可能返回 null,表示取不到有效值。
7794
+ */
7795
+ UpdatedTime: string;
7796
+ /**
7797
+ * 应用描述
7798
+ 注意:此字段可能返回 null,表示取不到有效值。
7799
+ */
7800
+ Description: string;
7801
+ }
7330
7802
  /**
7331
7803
  * DescribeClusterInstances返回参数结构体
7332
7804
  */
@@ -7731,6 +8203,54 @@ export interface CreateClusterRouteResponse {
7731
8203
  */
7732
8204
  RequestId?: string;
7733
8205
  }
8206
+ /**
8207
+ * 应用市场部署的应用结构
8208
+ */
8209
+ export interface Release {
8210
+ /**
8211
+ * 应用名称
8212
+ */
8213
+ Name: string;
8214
+ /**
8215
+ * 应用命名空间
8216
+ */
8217
+ Namespace: string;
8218
+ /**
8219
+ * 应用当前版本
8220
+ 注意:此字段可能返回 null,表示取不到有效值。
8221
+ */
8222
+ Revision: string;
8223
+ /**
8224
+ * 应用状态
8225
+ 注意:此字段可能返回 null,表示取不到有效值。
8226
+ */
8227
+ Status: string;
8228
+ /**
8229
+ * 制品名称
8230
+ 注意:此字段可能返回 null,表示取不到有效值。
8231
+ */
8232
+ ChartName: string;
8233
+ /**
8234
+ * 制品版本
8235
+ 注意:此字段可能返回 null,表示取不到有效值。
8236
+ */
8237
+ ChartVersion: string;
8238
+ /**
8239
+ * 制品应用版本
8240
+ 注意:此字段可能返回 null,表示取不到有效值。
8241
+ */
8242
+ AppVersion: string;
8243
+ /**
8244
+ * 更新时间
8245
+ 注意:此字段可能返回 null,表示取不到有效值。
8246
+ */
8247
+ UpdatedTime: string;
8248
+ /**
8249
+ * 应用描述
8250
+ 注意:此字段可能返回 null,表示取不到有效值。
8251
+ */
8252
+ Description: string;
8253
+ }
7734
8254
  /**
7735
8255
  * CreateClusterNodePoolFromExistingAsg返回参数结构体
7736
8256
  */
@@ -9683,6 +10203,30 @@ export interface GPUArgs {
9683
10203
  */
9684
10204
  CustomDriver?: CustomDriver;
9685
10205
  }
10206
+ /**
10207
+ * 路由表冲突对象
10208
+ */
10209
+ export interface RouteTableConflict {
10210
+ /**
10211
+ * 路由表类型。
10212
+ */
10213
+ RouteTableType: string;
10214
+ /**
10215
+ * 路由表CIDR。
10216
+ 注意:此字段可能返回 null,表示取不到有效值。
10217
+ */
10218
+ RouteTableCidrBlock: string;
10219
+ /**
10220
+ * 路由表名称。
10221
+ 注意:此字段可能返回 null,表示取不到有效值。
10222
+ */
10223
+ RouteTableName: string;
10224
+ /**
10225
+ * 路由表ID。
10226
+ 注意:此字段可能返回 null,表示取不到有效值。
10227
+ */
10228
+ RouteTableId: string;
10229
+ }
9686
10230
  /**
9687
10231
  * 托管prometheus实例概览
9688
10232
  */