tencentcloud-sdk-nodejs-clb 4.1.161 → 4.1.165
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
|
@@ -4762,38 +4762,41 @@ export interface DescribeClsLogSetResponse {
|
|
|
4762
4762
|
*/
|
|
4763
4763
|
export interface ModifyTargetGroupAttributeRequest {
|
|
4764
4764
|
/**
|
|
4765
|
-
*
|
|
4765
|
+
* <p>目标组的ID。</p>
|
|
4766
4766
|
*/
|
|
4767
4767
|
TargetGroupId: string;
|
|
4768
4768
|
/**
|
|
4769
|
-
*
|
|
4769
|
+
* <p>目标组的新名称。</p>
|
|
4770
4770
|
*/
|
|
4771
4771
|
TargetGroupName?: string;
|
|
4772
4772
|
/**
|
|
4773
|
-
*
|
|
4773
|
+
* <p>目标组的新默认端口。全监听目标组不支持此参数。</p>
|
|
4774
4774
|
*/
|
|
4775
4775
|
Port?: number;
|
|
4776
4776
|
/**
|
|
4777
|
-
*
|
|
4778
|
-
<ur><li>WRR:按权重轮询。</li><li>LEAST_CONN:最小连接数。</li><li>IP_HASH:按IP哈希。</li><li>默认为 WRR。</li><ur>
|
|
4777
|
+
* <p>调度算法,仅V2新版目标组,且后端转发协议为(HTTP|HTTPS|GRPC)时该参数有效。可选值:<ur><li>WRR:按权重轮询。</li><li>LEAST_CONN:最小连接数。</li><li>IP_HASH:按IP哈希。</li><li>默认为 WRR。</li><ur></p>
|
|
4779
4778
|
*/
|
|
4780
4779
|
ScheduleAlgorithm?: string;
|
|
4781
4780
|
/**
|
|
4782
|
-
*
|
|
4781
|
+
* <p>健康检查详情。</p>
|
|
4783
4782
|
*/
|
|
4784
4783
|
HealthCheck?: TargetGroupHealthCheck;
|
|
4785
4784
|
/**
|
|
4786
|
-
*
|
|
4785
|
+
* <p>后端服务默认权重, 其中:<ul><li>取值范围[0, 100]</li><li>设置该值后,添加后端服务到目标组时, 若后端服务不单独设置权重, 则使用这里的默认权重。 </li><li>v1目标组类型不支持设置Weight参数。</li> </ul></p>
|
|
4787
4786
|
*/
|
|
4788
4787
|
Weight?: number;
|
|
4789
4788
|
/**
|
|
4790
|
-
*
|
|
4789
|
+
* <p>是否开启长连接,此参数仅适用于HTTP/HTTPS目标组,true:关闭;false:开启, 默认关闭。</p>
|
|
4791
4790
|
*/
|
|
4792
4791
|
KeepaliveEnable?: boolean;
|
|
4793
4792
|
/**
|
|
4794
|
-
*
|
|
4793
|
+
* <p>会话保持时间,单位:秒。可选值:30~3600,默认 0,表示不开启。TCP/UDP目标组不支持该参数。</p>
|
|
4795
4794
|
*/
|
|
4796
4795
|
SessionExpireTime?: number;
|
|
4796
|
+
/**
|
|
4797
|
+
* <p>是否开启SNAT(源IP替换),True(开启)、False(关闭)。默认为关闭。注意:SnatEnable开启时会替换客户端源IP,此时<code>透传客户端源IP</code>选项关闭,反之亦然。</p>
|
|
4798
|
+
*/
|
|
4799
|
+
SnatEnable?: boolean;
|
|
4797
4800
|
}
|
|
4798
4801
|
/**
|
|
4799
4802
|
* 独占集群
|