tencentcloud-sdk-nodejs-clb 4.0.802 → 4.0.805
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 +1 -1
- package/products.md +29 -29
- package/src/services/clb/v20180317/clb_client.ts +3 -1
- package/src/services/clb/v20180317/clb_models.ts +148 -120
- package/tencentcloud/services/clb/v20180317/clb_client.d.ts +3 -1
- package/tencentcloud/services/clb/v20180317/clb_client.js +3 -1
- package/tencentcloud/services/clb/v20180317/clb_models.d.ts +148 -120
@@ -98,7 +98,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
98
98
|
/**
|
99
99
|
* SetLoadBalancerSecurityGroups 接口支持对一个公网负载均衡实例执行设置(绑定、解绑)安全组操作。查询一个负载均衡实例目前已绑定的安全组,可使用 DescribeLoadBalancers 接口。本接口是set语义,
|
100
100
|
绑定操作时,入参需要传入负载均衡实例要绑定的所有安全组(已绑定的+新增绑定的)。
|
101
|
-
|
101
|
+
解绑操作时,入参需要传入负载均衡实例执行解绑后所绑定的所有安全组;如果要解绑所有安全组,可不传此参数,或传入空数组。注意:内网 CLB 绑定 EIP 后,CLB 上的安全组对来自 EIP 的流量不生效,对来自内网 CLB 的流量生效。
|
102
102
|
*/
|
103
103
|
SetLoadBalancerSecurityGroups(req: SetLoadBalancerSecurityGroupsRequest, cb?: (error: string, rep: SetLoadBalancerSecurityGroupsResponse) => void): Promise<SetLoadBalancerSecurityGroupsResponse>;
|
104
104
|
/**
|
@@ -408,6 +408,8 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
408
408
|
/**
|
409
409
|
* 克隆负载均衡实例,根据指定的负载均衡实例,复制出相同规则和绑定关系的负载均衡实例。克隆接口为异步操作,克隆的数据以调用CloneLoadBalancer时为准,如果调用CloneLoadBalancer后克隆CLB发生变化,变化规则不会克隆。
|
410
410
|
|
411
|
+
注:查询实例创建状态可以根据返回值中的requestId访问[DescribeTaskStatus](https://cloud.tencent.com/document/product/214/30683)接口
|
412
|
+
|
411
413
|
限制说明:
|
412
414
|
实例属性维度限制
|
413
415
|
仅支持克隆按量计费实例,不支持包年包月实例。
|
@@ -159,7 +159,7 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
159
159
|
/**
|
160
160
|
* SetLoadBalancerSecurityGroups 接口支持对一个公网负载均衡实例执行设置(绑定、解绑)安全组操作。查询一个负载均衡实例目前已绑定的安全组,可使用 DescribeLoadBalancers 接口。本接口是set语义,
|
161
161
|
绑定操作时,入参需要传入负载均衡实例要绑定的所有安全组(已绑定的+新增绑定的)。
|
162
|
-
|
162
|
+
解绑操作时,入参需要传入负载均衡实例执行解绑后所绑定的所有安全组;如果要解绑所有安全组,可不传此参数,或传入空数组。注意:内网 CLB 绑定 EIP 后,CLB 上的安全组对来自 EIP 的流量不生效,对来自内网 CLB 的流量生效。
|
163
163
|
*/
|
164
164
|
async SetLoadBalancerSecurityGroups(req, cb) {
|
165
165
|
return this.request("SetLoadBalancerSecurityGroups", req, cb);
|
@@ -597,6 +597,8 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
597
597
|
/**
|
598
598
|
* 克隆负载均衡实例,根据指定的负载均衡实例,复制出相同规则和绑定关系的负载均衡实例。克隆接口为异步操作,克隆的数据以调用CloneLoadBalancer时为准,如果调用CloneLoadBalancer后克隆CLB发生变化,变化规则不会克隆。
|
599
599
|
|
600
|
+
注:查询实例创建状态可以根据返回值中的requestId访问[DescribeTaskStatus](https://cloud.tencent.com/document/product/214/30683)接口
|
601
|
+
|
600
602
|
限制说明:
|
601
603
|
实例属性维度限制
|
602
604
|
仅支持克隆按量计费实例,不支持包年包月实例。
|