tencentcloud-sdk-nodejs-clb 4.1.145 → 4.1.153

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-clb",
3
- "version": "4.1.145",
3
+ "version": "4.1.153",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -3071,6 +3071,11 @@ export interface Backend {
3071
3071
  * 标签。
3072
3072
  */
3073
3073
  Tag?: string;
3074
+ /**
3075
+ * 后端服务所在的可用区,如ap-guangzhou-1
3076
+ 注意:此字段可能返回 null,表示取不到有效值。
3077
+ */
3078
+ Zone?: string;
3074
3079
  }
3075
3080
  /**
3076
3081
  * lb实例包年包月相关配置属性
@@ -4481,6 +4486,11 @@ export interface LoadBalancerDetail {
4481
4486
  注意:此字段可能返回 null,表示取不到有效值。
4482
4487
  */
4483
4488
  Exclusive?: number;
4489
+ /**
4490
+ * 可用区转发亲和信息
4491
+ 注意:此字段可能返回 null,表示取不到有效值。
4492
+ */
4493
+ AvailableZoneAffinityInfo?: AvailableZoneAffinityInfo;
4484
4494
  }
4485
4495
  /**
4486
4496
  * 反查结果数据类型。
@@ -5328,6 +5338,25 @@ export interface Quota {
5328
5338
  */
5329
5339
  QuotaLimit?: number;
5330
5340
  }
5341
+ /**
5342
+ * 可用区转发亲和信息
5343
+ */
5344
+ export interface AvailableZoneAffinityInfo {
5345
+ /**
5346
+ * 是否开启可用区转发亲和。true:开启可用区转发亲和;false:开启可用区转发亲和。
5347
+ */
5348
+ Enable?: boolean;
5349
+ /**
5350
+ * 可用区转发亲和失效阈值,当可用区内后端服务健康比例小于该阈值时,负载均衡会退出可用区转发亲和,转为全可用区转发。
5351
+ 注意:此字段可能返回 null,表示取不到有效值。
5352
+ */
5353
+ ExitRatio?: number;
5354
+ /**
5355
+ * 可用区转发亲和的重新生效阈值,当处于全可用区转发,且负载均衡可用区内的后端服务健康比例大于等于该阈值时,负载均衡会重新进入可用区转发亲和。
5356
+ 注意:此字段可能返回 null,表示取不到有效值。
5357
+ */
5358
+ ReentryRatio?: number;
5359
+ }
5331
5360
  /**
5332
5361
  * SetLoadBalancerClsLog请求参数结构体
5333
5362
  */
@@ -6208,4 +6237,8 @@ export interface LoadBalancer {
6208
6237
  * 负载均衡实例关联的Endpoint id。
6209
6238
  */
6210
6239
  AssociateEndpoint?: string;
6240
+ /**
6241
+ * 可用区转发亲和信息
6242
+ */
6243
+ AvailableZoneAffinityInfo?: AvailableZoneAffinityInfo;
6211
6244
  }