tencentcloud-sdk-nodejs-gwlb 4.1.172 → 4.1.176

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-gwlb",
3
- "version": "4.1.172",
3
+ "version": "4.1.176",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -79,15 +79,15 @@ export interface DescribeTargetGroupListRequest {
79
79
  */
80
80
  export interface ModifyGatewayLoadBalancerAttributeRequest {
81
81
  /**
82
- * 网关负载均衡的唯一ID。可通过[DescribeGatewayLoadBalancers](https://cloud.tencent.com/document/api/1782/111683) 接口获取。
82
+ * <p>网关负载均衡的唯一ID。可通过<a href="https://cloud.tencent.com/document/api/1782/111683">DescribeGatewayLoadBalancers</a> 接口获取。</p>
83
83
  */
84
84
  LoadBalancerId: string;
85
85
  /**
86
- * 网关负载均衡实例名称。可支持输入1-60个字符。
86
+ * <p>网关负载均衡实例名称。命名规则:1-80 个英文字母、汉字等国际通用语言字符,数字,连接线“-”、下划线“_”等常见字符(禁止Unicode补充字符,如emoji表情、生僻汉字等)。</p>
87
87
  */
88
88
  LoadBalancerName?: string;
89
89
  /**
90
- * 是否开启删除保护。
90
+ * <p>是否开启删除保护。</p>
91
91
  */
92
92
  DeleteProtect?: boolean;
93
93
  }
@@ -485,7 +485,7 @@ export interface DescribeTargetGroupInstancesResponse {
485
485
  */
486
486
  export interface CreateTargetGroupRequest {
487
487
  /**
488
- * <p>目标组名称,限定60个字符。</p>
488
+ * <p>目标组名称。命名规则:1-80 个英文字母、汉字等国际通用语言字符,数字,连接线“-”、下划线“_”等常见字符(禁止Unicode补充字符,如emoji表情、生僻汉字等)。</p>
489
489
  */
490
490
  TargetGroupName?: string;
491
491
  /**
@@ -501,7 +501,7 @@ export interface CreateTargetGroupRequest {
501
501
  */
502
502
  TargetGroupInstances?: Array<TargetGroupInstance>;
503
503
  /**
504
- * <p>网关负载均衡目标组协议。- TENCENT_GENEVE :GENEVE 标准协议- AWS_GENEVE:GENEVE 兼容协议</p>
504
+ * <p>网关负载均衡目标组协议。</p><ul><li>TENCENT_GENEVE :GENEVE 标准协议</li><li>AWS_GENEVE:GENEVE 兼容协议</li></ul>
505
505
  */
506
506
  Protocol?: string;
507
507
  /**
@@ -554,27 +554,27 @@ export interface CreateTargetGroupRequest {
554
554
  */
555
555
  export interface CreateGatewayLoadBalancerRequest {
556
556
  /**
557
- * 网关负载均衡后端目标设备所属的私有网络 ID,如vpc-azd4dt1c,可以通过 [DescribeVpcs](https://cloud.tencent.com/document/product/215/15778) 接口获取。
557
+ * <p>网关负载均衡后端目标设备所属的私有网络 ID,如vpc-azd4dt1c,可以通过 <a href="https://cloud.tencent.com/document/product/215/15778">DescribeVpcs</a> 接口获取。</p>
558
558
  */
559
559
  VpcId: string;
560
560
  /**
561
- * 网关负载均衡后端目标设备所属的私有网络的子网ID。可通过[DescribeSubnets](https://cloud.tencent.com/document/product/215/15784)接口获取。
561
+ * <p>网关负载均衡后端目标设备所属的私有网络的子网ID。可通过<a href="https://cloud.tencent.com/document/product/215/15784">DescribeSubnets</a>接口获取。</p>
562
562
  */
563
563
  SubnetId: string;
564
564
  /**
565
- * 网关负载均衡实例名称。可支持输入1-60个字符。不填写时默认自动生成。
565
+ * <p>网关负载均衡实例名称。命名规则:1-80 个英文字母、汉字等国际通用语言字符,数字,连接线“-”、下划线“_”等常见字符(禁止Unicode补充字符,如emoji表情、生僻汉字等)。不填写时默认自动生成。</p>
566
566
  */
567
567
  LoadBalancerName?: string;
568
568
  /**
569
- * 创建网关负载均衡的个数,默认值为 1。批量创建数量最大支持10个。
569
+ * <p>创建网关负载均衡的个数,默认值为 1。批量创建数量最大支持10个。</p>
570
570
  */
571
571
  Number?: number;
572
572
  /**
573
- * 购买网关负载均衡的同时,给负载均衡打上标签,最大支持20个标签键值对。
573
+ * <p>购买网关负载均衡的同时,给负载均衡打上标签,最大支持20个标签键值对。</p>
574
574
  */
575
575
  Tags?: Array<TagInfo>;
576
576
  /**
577
- * 网关负载均衡实例计费类型,当前只支持传POSTPAID_BY_HOUR(按量计费),默认是POSTPAID_BY_HOUR
577
+ * <p>网关负载均衡实例计费类型,当前只支持传POSTPAID_BY_HOUR(按量计费),默认是POSTPAID_BY_HOUR。</p>
578
578
  */
579
579
  LBChargeType?: string;
580
580
  }
@@ -701,12 +701,11 @@ export interface RegisterTargetGroupInstancesResponse {
701
701
  */
702
702
  export interface CreateGatewayLoadBalancerResponse {
703
703
  /**
704
- * 由网关负载均衡实例唯一 ID 组成的数组。
705
- 存在某些场景,如创建出现延迟时,此字段可能返回为空;此时可以根据接口返回的RequestId或DealName参数,通过[DescribeTaskStatus](https://cloud.tencent.com/document/api/1782/111700)接口查询创建的资源ID。
704
+ * <p>由网关负载均衡实例唯一 ID 组成的数组。<br>存在某些场景,如创建出现延迟时,此字段可能返回为空;此时可以根据接口返回的RequestId或DealName参数,通过<a href="https://cloud.tencent.com/document/api/1782/111700">DescribeTaskStatus</a>接口查询创建的资源ID。</p>
706
705
  */
707
706
  LoadBalancerIds?: Array<string>;
708
707
  /**
709
- * 订单号。
708
+ * <p>订单号。</p>
710
709
  */
711
710
  DealName?: string;
712
711
  /**
@@ -841,43 +840,43 @@ export interface AssociationItem {
841
840
  */
842
841
  export interface ModifyTargetGroupAttributeRequest {
843
842
  /**
844
- * 目标组的ID,可以通过[DescribeTargetGroups](https://cloud.tencent.com/document/product/214/40554)获取。
843
+ * <p>目标组的ID,可以通过<a href="https://cloud.tencent.com/document/product/214/40554">DescribeTargetGroups</a>获取。</p>
845
844
  */
846
845
  TargetGroupId: string;
847
846
  /**
848
- * 目标组的新名称。
847
+ * <p>目标组的新名称。命名规则:1-80 个英文字母、汉字等国际通用语言字符,数字,连接线“-”、下划线“_”等常见字符(禁止Unicode补充字符,如emoji表情、生僻汉字等)。</p>
849
848
  */
850
849
  TargetGroupName?: string;
851
850
  /**
852
- * 健康检查详情。
851
+ * <p>健康检查详情。</p>
853
852
  */
854
853
  HealthCheck?: TargetGroupHealthCheck;
855
854
  /**
856
- * 是否支持全死全活。
855
+ * <p>是否支持全死全活。</p>
857
856
  */
858
857
  AllDeadToAlive?: boolean;
859
858
  /**
860
- * TCP协议连接空闲超时时间,可配置60s-6000s,默认350s
859
+ * <p>TCP协议连接空闲超时时间,可配置60s-6000s,默认350s。</p>
861
860
  */
862
861
  TcpIdleConnectTimeout?: number;
863
862
  /**
864
- * 其他协议连接空闲超时时间,可配置5s-180s,默认120s
863
+ * <p>其他协议连接空闲超时时间,可配置5s-180s,默认120s</p>
865
864
  */
866
865
  OthersIdleConnectTimeout?: number;
867
866
  /**
868
- * 重新调度功能内的解绑后端服务开关,开关打开后解绑后端服务会触发重新调度。
867
+ * <p>重新调度功能内的解绑后端服务开关,开关打开后解绑后端服务会触发重新调度。</p>
869
868
  */
870
869
  RescheduleUnbindRs?: boolean;
871
870
  /**
872
- * 解绑RS后开启重调度的时间,可配置0s-3600s,默认0s
871
+ * <p>解绑RS后开启重调度的时间,可配置0s-3600s,默认0s</p>
873
872
  */
874
873
  RescheduleUnbindRsStartTime?: number;
875
874
  /**
876
- * 重新调度功能内的后端服务健康探测异常开关,开关打开后后端服务健康检查异常会触发重新调度。
875
+ * <p>重新调度功能内的后端服务健康探测异常开关,开关打开后后端服务健康检查异常会触发重新调度。</p>
877
876
  */
878
877
  RescheduleUnhealthy?: boolean;
879
878
  /**
880
- * 后端服务健康探测异常后开启重调度的时间,可配置0s-3600s,默认0s
879
+ * <p>后端服务健康探测异常后开启重调度的时间,可配置0s-3600s,默认0s</p>
881
880
  */
882
881
  RescheduleUnhealthyStartTime?: number;
883
882
  }