tencentcloud-sdk-nodejs-tke 4.1.291 → 4.1.299

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-tke",
3
- "version": "4.1.291",
3
+ "version": "4.1.299",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -227,7 +227,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
227
227
  /**
228
228
  * 获取OS聚合信息
229
229
  */
230
- DescribeOSImages(req?: DescribeOSImagesRequest, cb?: (error: string, rep: DescribeOSImagesResponse) => void): Promise<DescribeOSImagesResponse>;
230
+ DescribeOSImages(req: DescribeOSImagesRequest, cb?: (error: string, rep: DescribeOSImagesResponse) => void): Promise<DescribeOSImagesResponse>;
231
231
  /**
232
232
  * 修改集群标签
233
233
  */
@@ -2407,7 +2407,12 @@ export interface DisableControlPlaneLogsRequest {
2407
2407
  /**
2408
2408
  * DescribeOSImages请求参数结构体
2409
2409
  */
2410
- export type DescribeOSImagesRequest = null;
2410
+ export interface DescribeOSImagesRequest {
2411
+ /**
2412
+ * <p>镜像拉取接口增加过滤字段</p>
2413
+ */
2414
+ Filters?: Array<Filter>;
2415
+ }
2411
2416
  /**
2412
2417
  * CreateEksLogConfig请求参数结构体
2413
2418
  */
@@ -5318,11 +5323,11 @@ export interface OIDCConfigAuthenticationOptions {
5318
5323
  */
5319
5324
  export interface DescribeOSImagesResponse {
5320
5325
  /**
5321
- * 镜像信息列表
5326
+ * <p>镜像信息列表</p>
5322
5327
  */
5323
5328
  OSImageSeriesSet?: Array<OSImage>;
5324
5329
  /**
5325
- * 镜像数量
5330
+ * <p>镜像数量</p>
5326
5331
  */
5327
5332
  TotalCount?: number;
5328
5333
  /**
@@ -9490,29 +9495,33 @@ export interface EdgeClusterPublicLB {
9490
9495
  */
9491
9496
  export interface OSImage {
9492
9497
  /**
9493
- * os聚合名称
9498
+ * <p>os聚合名称</p>
9494
9499
  */
9495
9500
  SeriesName?: string;
9496
9501
  /**
9497
- * os别名
9502
+ * <p>os别名</p>
9498
9503
  */
9499
9504
  Alias?: string;
9500
9505
  /**
9501
- * os名称
9506
+ * <p>os名称</p>
9502
9507
  */
9503
9508
  OsName?: string;
9504
9509
  /**
9505
- * 操作系统类型(分为定制和非定制,取值分别为:DOCKER_CUSTOMIZE、GENERAL)
9510
+ * <p>操作系统类型(分为定制和非定制,取值分别为:DOCKER_CUSTOMIZE、GENERAL)</p>
9506
9511
  */
9507
9512
  OsCustomizeType?: string;
9508
9513
  /**
9509
- * os是否下线(online表示在线,offline表示下线)
9514
+ * <p>os是否下线(online表示在线,offline表示下线)</p>
9510
9515
  */
9511
9516
  Status?: string;
9512
9517
  /**
9513
- * 镜像id
9518
+ * <p>镜像id</p>
9514
9519
  */
9515
9520
  ImageId?: string;
9521
+ /**
9522
+ * <p>架构</p>
9523
+ */
9524
+ Arch?: string;
9516
9525
  }
9517
9526
  /**
9518
9527
  * EnableEncryptionProtection请求参数结构体