tencentcloud-sdk-nodejs-vpc 4.1.83 → 4.1.99
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
|
@@ -52,9 +52,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
52
52
|
*/
|
|
53
53
|
ModifyIPv6AddressesAttributes(req: ModifyIPv6AddressesAttributesRequest, cb?: (error: string, rep: ModifyIPv6AddressesAttributesResponse) => void): Promise<ModifyIPv6AddressesAttributesResponse>;
|
|
54
54
|
/**
|
|
55
|
-
* 本接口(AssociateHaVipInstance)用于HAVIP绑定子机或网卡(限制HaVip
|
|
55
|
+
* 本接口(AssociateHaVipInstance)用于HAVIP绑定子机或网卡(限制HaVip的漂移范围)。
|
|
56
56
|
*/
|
|
57
|
-
AssociateHaVipInstance(req
|
|
57
|
+
AssociateHaVipInstance(req: AssociateHaVipInstanceRequest, cb?: (error: string, rep: AssociateHaVipInstanceResponse) => void): Promise<AssociateHaVipInstanceResponse>;
|
|
58
58
|
/**
|
|
59
59
|
* 本接口(AcceptVpcPeeringConnection)用于接受对等连接请求。
|
|
60
60
|
*/
|
|
@@ -92,7 +92,7 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
92
92
|
return this.request("ModifyIPv6AddressesAttributes", req, cb);
|
|
93
93
|
}
|
|
94
94
|
/**
|
|
95
|
-
* 本接口(AssociateHaVipInstance)用于HAVIP绑定子机或网卡(限制HaVip
|
|
95
|
+
* 本接口(AssociateHaVipInstance)用于HAVIP绑定子机或网卡(限制HaVip的漂移范围)。
|
|
96
96
|
*/
|
|
97
97
|
async AssociateHaVipInstance(req, cb) {
|
|
98
98
|
return this.request("AssociateHaVipInstance", req, cb);
|
|
@@ -15766,7 +15766,12 @@ export interface DeleteRouteTableRequest {
|
|
|
15766
15766
|
/**
|
|
15767
15767
|
* AssociateHaVipInstance请求参数结构体
|
|
15768
15768
|
*/
|
|
15769
|
-
export
|
|
15769
|
+
export interface AssociateHaVipInstanceRequest {
|
|
15770
|
+
/**
|
|
15771
|
+
* HaVip绑定的子机或网卡。最多支持10个实例。
|
|
15772
|
+
*/
|
|
15773
|
+
HaVipAssociationSet: Array<HaVipAssociation>;
|
|
15774
|
+
}
|
|
15770
15775
|
/**
|
|
15771
15776
|
* DescribeCdcLDCXList返回参数结构体
|
|
15772
15777
|
*/
|