tencent cloud

文档反馈

CreateHaVip

最后更新时间:2023-08-23 14:11:29

1. API Description

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.

We recommend you to use API Explorer
Try it
API Explorer provides a range of capabilities, including online call, signature authentication, SDK code generation, and API quick search. It enables you to view the request, response, and auto-generated examples.

2. Input Parameters

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.

3. Output Parameters

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.

4. Example

Example1 Creating a HAVIP

This example shows you how to create an HAVIP.

Input Example

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"
}

Output Example

{
    "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"
    }
}

5. Developer Resources

SDK

TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.

Command Line Interface

6. Error Code

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.