tencentcloud-sdk-nodejs-clb 4.1.143 → 4.1.145

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.143",
3
+ "version": "4.1.145",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -2096,7 +2096,7 @@ export interface Listener {
2096
2096
  */
2097
2097
  Toa?: boolean;
2098
2098
  /**
2099
- * 解绑后端目标时,是否发RST给客户端,(此参数仅对于TCP监听器有意义)。
2099
+ * 重新调度功能,解绑后端服务开关,打开此开关,当解绑后端服务时触发重新调度。仅TCP/UDP监听器支持。
2100
2100
  */
2101
2101
  DeregisterTargetRst?: boolean;
2102
2102
  /**
@@ -2303,9 +2303,7 @@ export interface ModifyListenerRequest {
2303
2303
  */
2304
2304
  KeepaliveEnable?: number;
2305
2305
  /**
2306
- * 解绑后端目标时,是否发RST给客户端,此参数仅适用于TCP监听器。
2307
- True表示发送 RST 给客户端,False表示不发送 RST 给客户端。
2308
- 不传则表示不修改。
2306
+ * 重新调度功能,解绑后端服务开关,打开此开关,当解绑后端服务时触发重新调度。仅TCP/UDP监听器支持。
2309
2307
  */
2310
2308
  DeregisterTargetRst?: boolean;
2311
2309
  /**
@@ -2337,8 +2335,7 @@ export interface ModifyListenerRequest {
2337
2335
  */
2338
2336
  ProxyProtocol?: boolean;
2339
2337
  /**
2340
- * 是否开启SNATTrue 表示开启 SNAT,False 表示不开启 SNAT。
2341
- 不传则表示不修改。
2338
+ * 是否开启SNAT(源IP替换),True(开启)、False(关闭)。默认为关闭。注意:SnatEnable开启时会替换客户端源IP,此时`透传客户端源IP`选项关闭,反之亦然。
2342
2339
  */
2343
2340
  SnatEnable?: boolean;
2344
2341
  /**
@@ -3791,7 +3788,7 @@ export interface CreateListenerRequest {
3791
3788
  */
3792
3789
  EndPort?: number;
3793
3790
  /**
3794
- * 解绑后端目标时,是否发RST给两端(客户端和服务器),此参数仅适用于TCP监听器。
3791
+ * 重新调度功能,解绑后端服务开关,打开此开关,当解绑后端服务时触发重新调度。仅TCP/UDP监听器支持。
3795
3792
  */
3796
3793
  DeregisterTargetRst?: boolean;
3797
3794
  /**
@@ -3817,8 +3814,7 @@ export interface CreateListenerRequest {
3817
3814
  */
3818
3815
  ProxyProtocol?: boolean;
3819
3816
  /**
3820
- * 是否开启SNATTrue(开启)、False(关闭)。
3821
- 默认为关闭。
3817
+ * 是否开启SNAT(源IP替换),True(开启)、False(关闭)。默认为关闭。注意:SnatEnable开启时会替换客户端源IP,此时`透传客户端源IP`选项关闭,反之亦然。
3822
3818
  */
3823
3819
  SnatEnable?: boolean;
3824
3820
  /**