tencentcloud-sdk-nodejs-clb 4.1.157 → 4.1.159
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
|
@@ -638,7 +638,7 @@ export interface DescribeRewriteRequest {
|
|
|
638
638
|
*/
|
|
639
639
|
export interface ModifyLoadBalancerAttributesResponse {
|
|
640
640
|
/**
|
|
641
|
-
*
|
|
641
|
+
* <p>切换负载均衡计费方式时,可用此参数查询切换任务是否成功。</p>
|
|
642
642
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
643
643
|
*/
|
|
644
644
|
DealName?: string;
|
|
@@ -1842,42 +1842,43 @@ export interface BatchRegisterTargetsResponse {
|
|
|
1842
1842
|
*/
|
|
1843
1843
|
export interface ModifyLoadBalancerAttributesRequest {
|
|
1844
1844
|
/**
|
|
1845
|
-
*
|
|
1845
|
+
* <p>负载均衡的唯一ID,可以通过 <a href="https://cloud.tencent.com/document/product/214/30685">DescribeLoadBalancers</a> 接口获取。</p>
|
|
1846
1846
|
*/
|
|
1847
1847
|
LoadBalancerId: string;
|
|
1848
1848
|
/**
|
|
1849
|
-
*
|
|
1849
|
+
* <p>负载均衡实例名称,规则:1-60 个英文、汉字、数字、连接线“-”或下划线“_”。</p>
|
|
1850
1850
|
*/
|
|
1851
1851
|
LoadBalancerName?: string;
|
|
1852
1852
|
/**
|
|
1853
|
-
*
|
|
1853
|
+
* <p>设置负载均衡跨地域绑定1.0的后端服务信息</p>
|
|
1854
1854
|
*/
|
|
1855
1855
|
TargetRegionInfo?: TargetRegionInfo;
|
|
1856
1856
|
/**
|
|
1857
|
-
*
|
|
1857
|
+
* <p>网络计费相关参数</p>
|
|
1858
1858
|
*/
|
|
1859
1859
|
InternetChargeInfo?: InternetAccessible;
|
|
1860
1860
|
/**
|
|
1861
|
-
* Target是否放通来自CLB
|
|
1862
|
-
开启放通(true):只验证CLB上的安全组;
|
|
1863
|
-
不开启放通(false):需同时验证CLB和后端实例上的安全组。
|
|
1864
|
-
不填则不修改。
|
|
1861
|
+
* <p>Target是否放通来自CLB的流量。开启放通(true):只验证CLB上的安全组;不开启放通(false):需同时验证CLB和后端实例上的安全组。不填则不修改。</p>
|
|
1865
1862
|
*/
|
|
1866
1863
|
LoadBalancerPassToTarget?: boolean;
|
|
1867
1864
|
/**
|
|
1868
|
-
*
|
|
1865
|
+
* <p>不同计费模式之间的切换:0表示不切换,1表示预付费和后付费切换,2表示后付费之间切换。默认值:0</p>
|
|
1866
|
+
*/
|
|
1867
|
+
SwitchFlag?: number;
|
|
1868
|
+
/**
|
|
1869
|
+
* <p>是否开启跨地域绑定2.0功能。不填则不修改。</p>
|
|
1869
1870
|
*/
|
|
1870
1871
|
SnatPro?: boolean;
|
|
1871
1872
|
/**
|
|
1872
|
-
*
|
|
1873
|
+
* <p>是否开启删除保护,不填则不修改。</p>
|
|
1873
1874
|
*/
|
|
1874
1875
|
DeleteProtect?: boolean;
|
|
1875
1876
|
/**
|
|
1876
|
-
*
|
|
1877
|
+
* <p>将负载均衡二级域名由mycloud.com改为tencentclb.com,子域名也会变换,修改后mycloud.com域名将失效。不填则不修改。</p>
|
|
1877
1878
|
*/
|
|
1878
1879
|
ModifyClassicDomain?: boolean;
|
|
1879
1880
|
/**
|
|
1880
|
-
*
|
|
1881
|
+
* <p>关联的终端节点Id,可通过<a href="https://cloud.tencent.com/document/product/215/54679">DescribeVpcEndPoint</a>接口查询。传空字符串代表解除关联。</p>
|
|
1881
1882
|
*/
|
|
1882
1883
|
AssociateEndpoint?: string;
|
|
1883
1884
|
}
|