tencentcloud-sdk-nodejs-tsf 4.0.724 → 4.0.725

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.
@@ -5421,192 +5421,207 @@ export interface ContainerGroupDeploy {
5421
5421
  * 部署组id
5422
5422
  注意:此字段可能返回 null,表示取不到有效值。
5423
5423
  */
5424
- GroupId: string;
5424
+ GroupId?: string;
5425
5425
  /**
5426
5426
  * 分组名称
5427
5427
  注意:此字段可能返回 null,表示取不到有效值。
5428
5428
  */
5429
- GroupName: string;
5429
+ GroupName?: string;
5430
5430
  /**
5431
5431
  * 实例总数
5432
5432
  注意:此字段可能返回 null,表示取不到有效值。
5433
5433
  */
5434
- InstanceNum: number;
5434
+ InstanceNum?: number;
5435
5435
  /**
5436
5436
  * 已启动实例总数
5437
5437
  注意:此字段可能返回 null,表示取不到有效值。
5438
5438
  */
5439
- CurrentNum: number;
5439
+ CurrentNum?: number;
5440
5440
  /**
5441
5441
  * 镜像server
5442
5442
  注意:此字段可能返回 null,表示取不到有效值。
5443
5443
  */
5444
- Server: string;
5444
+ Server?: string;
5445
5445
  /**
5446
5446
  * 镜像名,如/tsf/nginx
5447
5447
  注意:此字段可能返回 null,表示取不到有效值。
5448
5448
  */
5449
- Reponame: string;
5449
+ Reponame?: string;
5450
5450
  /**
5451
5451
  * 镜像版本名称
5452
5452
  注意:此字段可能返回 null,表示取不到有效值。
5453
5453
  */
5454
- TagName: string;
5454
+ TagName?: string;
5455
5455
  /**
5456
5456
  * 业务容器初始分配的 CPU 核数,对应 K8S request
5457
5457
  注意:此字段可能返回 null,表示取不到有效值。
5458
5458
  */
5459
- CpuRequest: string;
5459
+ CpuRequest?: string;
5460
5460
  /**
5461
5461
  * 业务容器最大分配的 CPU 核数,对应 K8S limit
5462
5462
  注意:此字段可能返回 null,表示取不到有效值。
5463
5463
  */
5464
- CpuLimit: string;
5464
+ CpuLimit?: string;
5465
5465
  /**
5466
5466
  * 业务容器初始分配的内存 MiB 数,对应 K8S request
5467
5467
  注意:此字段可能返回 null,表示取不到有效值。
5468
5468
  */
5469
- MemRequest: string;
5469
+ MemRequest?: string;
5470
5470
  /**
5471
5471
  * 业务容器最大分配的内存 MiB 数,对应 K8S limit
5472
5472
  注意:此字段可能返回 null,表示取不到有效值。
5473
5473
  */
5474
- MemLimit: string;
5474
+ MemLimit?: string;
5475
5475
  /**
5476
5476
  * 0:公网 1:集群内访问 2:NodePort
5477
5477
  注意:此字段可能返回 null,表示取不到有效值。
5478
5478
  */
5479
- AccessType: number;
5479
+ AccessType?: number;
5480
5480
  /**
5481
5481
  * 端口映射
5482
5482
  注意:此字段可能返回 null,表示取不到有效值。
5483
5483
  */
5484
- ProtocolPorts: Array<ProtocolPort>;
5484
+ ProtocolPorts?: Array<ProtocolPort>;
5485
5485
  /**
5486
5486
  * 更新方式:0:快速更新 1:滚动更新
5487
5487
  注意:此字段可能返回 null,表示取不到有效值。
5488
5488
  */
5489
- UpdateType: number;
5489
+ UpdateType?: number;
5490
5490
  /**
5491
5491
  * 更新间隔,单位秒
5492
5492
  注意:此字段可能返回 null,表示取不到有效值。
5493
5493
  */
5494
- UpdateIvl: number;
5494
+ UpdateIvl?: number;
5495
5495
  /**
5496
5496
  * jvm参数
5497
5497
  注意:此字段可能返回 null,表示取不到有效值。
5498
5498
  */
5499
- JvmOpts: string;
5499
+ JvmOpts?: string;
5500
5500
  /**
5501
5501
  * 子网id
5502
5502
  注意:此字段可能返回 null,表示取不到有效值。
5503
5503
  */
5504
- SubnetId: string;
5504
+ SubnetId?: string;
5505
5505
  /**
5506
5506
  * agent容器初始分配的 CPU 核数,对应 K8S request
5507
5507
  注意:此字段可能返回 null,表示取不到有效值。
5508
5508
  */
5509
- AgentCpuRequest: string;
5509
+ AgentCpuRequest?: string;
5510
5510
  /**
5511
5511
  * agent容器最大分配的 CPU 核数,对应 K8S limit
5512
5512
  注意:此字段可能返回 null,表示取不到有效值。
5513
5513
  */
5514
- AgentCpuLimit: string;
5514
+ AgentCpuLimit?: string;
5515
5515
  /**
5516
5516
  * agent容器初始分配的内存 MiB 数,对应 K8S request
5517
5517
  注意:此字段可能返回 null,表示取不到有效值。
5518
5518
  */
5519
- AgentMemRequest: string;
5519
+ AgentMemRequest?: string;
5520
5520
  /**
5521
5521
  * agent容器最大分配的内存 MiB 数,对应 K8S limit
5522
5522
  注意:此字段可能返回 null,表示取不到有效值。
5523
5523
  */
5524
- AgentMemLimit: string;
5524
+ AgentMemLimit?: string;
5525
5525
  /**
5526
5526
  * istioproxy容器初始分配的 CPU 核数,对应 K8S request
5527
5527
  注意:此字段可能返回 null,表示取不到有效值。
5528
5528
  */
5529
- IstioCpuRequest: string;
5529
+ IstioCpuRequest?: string;
5530
5530
  /**
5531
5531
  * istioproxy容器最大分配的 CPU 核数,对应 K8S limit
5532
5532
  注意:此字段可能返回 null,表示取不到有效值。
5533
5533
  */
5534
- IstioCpuLimit: string;
5534
+ IstioCpuLimit?: string;
5535
5535
  /**
5536
5536
  * istioproxy容器初始分配的内存 MiB 数,对应 K8S request
5537
5537
  注意:此字段可能返回 null,表示取不到有效值。
5538
5538
  */
5539
- IstioMemRequest: string;
5539
+ IstioMemRequest?: string;
5540
5540
  /**
5541
5541
  * istioproxy容器最大分配的内存 MiB 数,对应 K8S limit
5542
5542
  注意:此字段可能返回 null,表示取不到有效值。
5543
5543
  */
5544
- IstioMemLimit: string;
5544
+ IstioMemLimit?: string;
5545
5545
  /**
5546
5546
  * 部署组的环境变量数组,这里没有展示 tsf 使用的环境变量,只展示了用户设置的环境变量。
5547
5547
  注意:此字段可能返回 null,表示取不到有效值。
5548
5548
  */
5549
- Envs: Array<Env>;
5549
+ Envs?: Array<Env>;
5550
5550
  /**
5551
5551
  * 健康检查配置信息,若不指定该参数,则默认不设置健康检查。
5552
5552
  注意:此字段可能返回 null,表示取不到有效值。
5553
5553
  */
5554
- HealthCheckSettings: HealthCheckSettings;
5554
+ HealthCheckSettings?: HealthCheckSettings;
5555
5555
  /**
5556
5556
  * 是否部署Agent容器
5557
5557
  注意:此字段可能返回 null,表示取不到有效值。
5558
5558
  */
5559
- DeployAgent: boolean;
5559
+ DeployAgent?: boolean;
5560
5560
  /**
5561
5561
  * 部署组备注
5562
5562
  注意:此字段可能返回 null,表示取不到有效值。
5563
5563
  */
5564
- Alias: string;
5564
+ Alias?: string;
5565
5565
  /**
5566
5566
  * 是否创建 k8s service
5567
5567
  注意:此字段可能返回 null,表示取不到有效值。
5568
5568
  */
5569
- DisableService: boolean;
5569
+ DisableService?: boolean;
5570
5570
  /**
5571
5571
  * service 是否为 headless 类型
5572
5572
  注意:此字段可能返回 null,表示取不到有效值。
5573
5573
  */
5574
- HeadlessService: boolean;
5574
+ HeadlessService?: boolean;
5575
5575
  /**
5576
5576
  * TcrRepoInfo值
5577
5577
  注意:此字段可能返回 null,表示取不到有效值。
5578
5578
  */
5579
- TcrRepoInfo: TcrRepoInfo;
5579
+ TcrRepoInfo?: TcrRepoInfo;
5580
5580
  /**
5581
5581
  * 数据卷信息,list
5582
5582
  注意:此字段可能返回 null,表示取不到有效值。
5583
5583
  */
5584
- VolumeInfos: Array<VolumeInfo>;
5584
+ VolumeInfos?: Array<VolumeInfo>;
5585
5585
  /**
5586
5586
  * 数据卷挂载信息,list
5587
5587
  注意:此字段可能返回 null,表示取不到有效值。
5588
5588
  */
5589
- VolumeMountInfos: Array<VolumeMountInfo>;
5589
+ VolumeMountInfos?: Array<VolumeMountInfo>;
5590
5590
  /**
5591
5591
  * KubeInjectEnable值
5592
5592
  注意:此字段可能返回 null,表示取不到有效值。
5593
5593
  */
5594
- KubeInjectEnable: boolean;
5594
+ KubeInjectEnable?: boolean;
5595
5595
  /**
5596
5596
  * 仓库类型 (person, tcr)
5597
5597
  注意:此字段可能返回 null,表示取不到有效值。
5598
5598
  */
5599
- RepoType: string;
5599
+ RepoType?: string;
5600
5600
  /**
5601
5601
  * 预热配置设置
5602
5602
  注意:此字段可能返回 null,表示取不到有效值。
5603
5603
  */
5604
- WarmupSetting: WarmupSetting;
5604
+ WarmupSetting?: WarmupSetting;
5605
5605
  /**
5606
5606
  * Envoy网关服务配置
5607
5607
  注意:此字段可能返回 null,表示取不到有效值。
5608
5608
  */
5609
- GatewayConfig: GatewayConfig;
5609
+ GatewayConfig?: GatewayConfig;
5610
+ /**
5611
+ * 容器名称
5612
+ 注意:此字段可能返回 null,表示取不到有效值。
5613
+ */
5614
+ ContainerName?: string;
5615
+ /**
5616
+ * 附加容器列表
5617
+ 注意:此字段可能返回 null,表示取不到有效值。
5618
+ */
5619
+ AdditionalContainerList?: Array<GroupContainerInfo>;
5620
+ /**
5621
+ * 内部容器列表
5622
+ 注意:此字段可能返回 null,表示取不到有效值。
5623
+ */
5624
+ InternalContainerList?: Array<GroupContainerInfo>;
5610
5625
  }
5611
5626
  /**
5612
5627
  * Tsf命名空间分页对象
@@ -6125,6 +6140,10 @@ export interface DescribeImageRepositoryRequest {
6125
6140
  * TcrRepoInfo值
6126
6141
  */
6127
6142
  TcrRepoInfo?: TcrRepoInfo;
6143
+ /**
6144
+ * 镜像仓库
6145
+ */
6146
+ RepoName?: string;
6128
6147
  }
6129
6148
  /**
6130
6149
  * 监控指标坐标
@@ -6605,6 +6624,90 @@ export interface MetricDimension {
6605
6624
  */
6606
6625
  Value?: string;
6607
6626
  }
6627
+ /**
6628
+ * 部署组容器信息
6629
+ */
6630
+ export interface GroupContainerInfo {
6631
+ /**
6632
+ * 镜像版本名称
6633
+ */
6634
+ TagName: string;
6635
+ /**
6636
+ * 容器名字
6637
+ 注意:此字段可能返回 null,表示取不到有效值。
6638
+ */
6639
+ ContainerName?: string;
6640
+ /**
6641
+ * 镜像名
6642
+ 注意:此字段可能返回 null,表示取不到有效值。
6643
+ */
6644
+ RepoName?: string;
6645
+ /**
6646
+ * 仓库类型,tcr,address,personal,默认personal
6647
+ 注意:此字段可能返回 null,表示取不到有效值。
6648
+ */
6649
+ RepoType?: string;
6650
+ /**
6651
+ * tcr仓库信息
6652
+ 注意:此字段可能返回 null,表示取不到有效值。
6653
+ */
6654
+ TcrRepoInfo?: TcrRepoInfo;
6655
+ /**
6656
+ * 镜像server
6657
+ 注意:此字段可能返回 null,表示取不到有效值。
6658
+ */
6659
+ Server?: string;
6660
+ /**
6661
+ * 凭证名字
6662
+ 注意:此字段可能返回 null,表示取不到有效值。
6663
+ */
6664
+ SecretName?: string;
6665
+ /**
6666
+ * jvm 参数
6667
+ 注意:此字段可能返回 null,表示取不到有效值。
6668
+ */
6669
+ JvmOpts?: string;
6670
+ /**
6671
+ * 容器最大的 CPU 核数,对应 K8S 的 limit
6672
+ 注意:此字段可能返回 null,表示取不到有效值。
6673
+ */
6674
+ CpuLimit?: string;
6675
+ /**
6676
+ * 容器分配的 CPU 核数,对应 K8S 的 request
6677
+ 注意:此字段可能返回 null,表示取不到有效值。
6678
+ */
6679
+ CpuRequest?: string;
6680
+ /**
6681
+ * 容器分配的内存 MiB 数,对应 K8S 的 request
6682
+ 注意:此字段可能返回 null,表示取不到有效值。
6683
+ */
6684
+ MemRequest?: string;
6685
+ /**
6686
+ * 容器最大的内存 MiB 数,对应 K8S 的 limit
6687
+ 注意:此字段可能返回 null,表示取不到有效值。
6688
+ */
6689
+ MemLimit?: string;
6690
+ /**
6691
+ * 健康检查配置信息
6692
+ 注意:此字段可能返回 null,表示取不到有效值。
6693
+ */
6694
+ HealthCheckSettings?: HealthCheckSettings;
6695
+ /**
6696
+ * 环境变量
6697
+ 注意:此字段可能返回 null,表示取不到有效值。
6698
+ */
6699
+ Envs?: Array<Env>;
6700
+ /**
6701
+ * 环境变量,作为入参时不用填
6702
+ 注意:此字段可能返回 null,表示取不到有效值。
6703
+ */
6704
+ UserEnvs?: Array<Env>;
6705
+ /**
6706
+ * 数据卷挂载点信息
6707
+ 注意:此字段可能返回 null,表示取不到有效值。
6708
+ */
6709
+ VolumeMountInfoList?: Array<VolumeMountInfo>;
6710
+ }
6608
6711
  /**
6609
6712
  * CreateUnitRuleWithDetailResp返回参数结构体
6610
6713
  */
@@ -8941,7 +9044,7 @@ export interface DescribeImageTagsResponse {
8941
9044
  /**
8942
9045
  * 查询的权限数据对象
8943
9046
  */
8944
- Result: ImageTagsResult;
9047
+ Result?: ImageTagsResult;
8945
9048
  /**
8946
9049
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
8947
9050
  */
@@ -14251,7 +14354,7 @@ export interface DescribeImageRepositoryResponse {
14251
14354
  /**
14252
14355
  * 查询的权限数据对象
14253
14356
  */
14254
- Result: ImageRepositoryResult;
14357
+ Result?: ImageRepositoryResult;
14255
14358
  /**
14256
14359
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
14257
14360
  */
@@ -14274,7 +14377,7 @@ export interface DescribeImageTagsRequest {
14274
14377
  /**
14275
14378
  * 应用Id
14276
14379
  */
14277
- ApplicationId: string;
14380
+ ApplicationId?: string;
14278
14381
  /**
14279
14382
  * 偏移量,取值从0开始
14280
14383
  */
@@ -14299,6 +14402,10 @@ export interface DescribeImageTagsRequest {
14299
14402
  * TcrRepoInfo值
14300
14403
  */
14301
14404
  TcrRepoInfo?: TcrRepoInfo;
14405
+ /**
14406
+ * 仓库名
14407
+ */
14408
+ RepoName?: string;
14302
14409
  }
14303
14410
  /**
14304
14411
  * Jvm监控内存数据封装