Domain name for API request: vpc.tencentcloudapi.com.
This API is used to create a highly available virtual IP (HAVIP).
A maximum of 20 requests can be initiated per second for this API.
The following request parameter list only provides API request parameters and some common parameters. For the complete common parameter list, see Common Request Parameters.
Parameter Name | Required | Type | Description |
---|---|---|---|
Action | Yes | String | Common Params. The value used for this API: CreateHaVip. |
Version | Yes | String | Common Params. The value used for this API: 2017-03-12. |
Region | No | String | Common Params. This parameter is not required for this API. |
VpcId | Yes | String | The ID of the VPC to which the HAVIP belongs. |
SubnetId | Yes | String | The ID of the subnet to which the HAVIP belongs. |
HaVipName | Yes | String | The name of the HAVIP . |
Vip | No | String | The specified virtual IP address, which must be within the IP range of the VPC and not in use. It will be automatically assigned if not specified. |
NetworkInterfaceId | No | String | The ID of the ENI associated with the HAVIP. |
Parameter Name | Type | Description |
---|---|---|
HaVip | HaVip | HAVIP object. |
RequestId | String | The unique request ID, which is returned for each request. RequestId is required for locating a problem. |
This example shows you how to create an HAVIP.
POST / HTTP/1.1
Host: vpc.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: CreateHaVip
<Common request parameters>
{
"SubnetId": "subnet-qq51iwr4",
"Vip": "10.4.6.15",
"VpcId": "vpc-6v2ht8q5",
"HaVipName": "test+name"
}
{
"Response": {
"HaVip": {
"HaVipId": "havip-72alakye",
"HaVipName": "test name",
"Vip": "10.4.6.15",
"VpcId": "vpc-6v2ht8q5",
"SubnetId": "subnet-qq51iwr4",
"NetworkInterfaceId": "",
"InstanceId": "",
"AddressIp": "",
"State": "UNBIND",
"CreatedTime": "2018-10-10 17:03:09",
"Business": "SCF"
},
"RequestId": "fcb47621-838b-428e-8c33-6e210d93c451"
}
}
TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.
The following only lists the error codes related to the API business logic. For other error codes, see Common Error Codes.
Error Code | Description |
---|---|
InvalidParameter | A parameter error occurred. |
InvalidParameterValue | Incorrect parameter value. |
InvalidParameterValue.Duplicate | The input parameter already exists. |
InvalidParameterValue.InvalidBusiness | The parameter value does not exist or is not supported. |
InvalidParameterValue.Malformed | Invalid input parameter format. |
InvalidParameterValue.Range | The parameter value is not in the specified range. |
InvalidParameterValue.Reserved | The parameter value is retained by the system. |
InvalidParameterValue.TooLong | Invalid parameter value. The parameter value is too long. |
LimitExceeded | Quota limit is reached. |
ResourceInUse | The resource is occupied. |
ResourceInsufficient | Insufficient resources. |
ResourceNotFound | The resource does not exist. |
UnsupportedOperation.SubnetNotExists | The subnet does not exist. |
Was this page helpful?