Domain name for API request: vpc.tencentcloudapi.com.
This API is used to apply for an IPv6 address for the ENI.
This API is completed asynchronously. If you need to query the execution result of an async task, please use the RequestId
returned by this API to poll the DescribeVpcTaskResult
API.
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.
This document describes the parameters for Signature V1. It's recommended to use the V3 signature, which provides higher security. Note that for Signature V3, the common parameters need to be placed in the HTTP Header. See details.
Parameter Name | Required | Type | Description |
---|---|---|---|
Action | Yes | String | Common parameter. The value used for this API: AssignIpv6Addresses. |
Version | Yes | String | Common parameter. The value used for this API: 2017-03-12. |
Region | Yes | String | Common parameter. For more information, please see the list of regions supported by the product. |
NetworkInterfaceId | Yes | String | The ID of the ENI instance, such as eni-m6dyj72l . |
Ipv6Addresses.N | No | Array of Ipv6Address | A list of IPv6 addresses. You can specify a maximum of 10 at one time. The quota is calculated together with that of Ipv6AddressCount , a required input parameter alternative to this one. |
Ipv6AddressCount | No | Integer | The number of automatically assigned IPv6 addresses. The total number of private IP addresses cannot exceed the quota. The quota is calculated together with that of Ipv6Addresses , a required input parameter alternative to this one. |
Parameter Name | Type | Description |
---|---|---|
Ipv6AddressSet | Array of Ipv6Address | The list of IPv6 addresses assigned to ENIs. |
RequestId | String | The unique request ID, which is returned for each request. RequestId is required for locating a problem. |
https://vpc.tencentcloudapi.com/?Action=AssignIpv6Addresses
&NetworkInterfaceId=eni-5u5biujl
&Ipv6Addresses.0.Address=3402:4e00:20:1202::1
&Ipv6Addresses.0.Primary=false
&Ipv6Addresses.0.Description=test1
&Ipv6Addresses.1.Address=3402:4e00:20:1202::2
&Ipv6Addresses.1.Primary=false
&Ipv6Addresses.1.Description=test2
&<Common request parameters>
{
"Response": {
"Ipv6AddressSet": [
{
"Address": "3402:4e00:20:1202::1",
"AddressId": "",
"Primary": false,
"Description": "test1",
"IsWanIpBlocked": false,
"State": "PENDING"
},
{
"Address": "3402:4e00:20:1202::2",
"AddressId": "",
"Primary": false,
"Description": "test2",
"IsWanIpBlocked": false,
"State": "PENDING"
}
],
"RequestId": "4a8d6fc0-bc48-4394-b1f7-2818a217359a"
}
}
Ipv6AddressCount
https://vpc.tencentcloudapi.com/?Action=AssignIpv6Addresses
&NetworkInterfaceId=eni-5u5biujl
&Ipv6AddressCount=2
&<Common request parameters>
{
"Response": {
"Ipv6AddressSet": [
{
"Address": "3402:4e00:20:1202:0:8d05:c272:f514",
"AddressId": "",
"Primary": false,
"Description": "",
"IsWanIpBlocked": false,
"State": "PENDING"
},
{
"Address": "3402:4e00:20:1202:0:8d05:c272:f559",
"AddressId": "",
"Primary": false,
"Description": "",
"IsWanIpBlocked": false,
"State": "PENDING"
}
],
"RequestId": "4a8d6fc0-bc48-4394-b1f7-2818a217359a"
}
}
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 |
---|---|
InvalidParameterValue | Incorrect parameter value. |
InvalidParameterValue.Malformed | Invalid input parameter format. |
LimitExceeded.Address | The number of assigned IP addresses has reached the upper limit. |
MissingParameter | Missing parameter. |
ResourceInUse.Address | The specified IP address is already in use. |
ResourceNotFound | The resource does not exist. |
UnsupportedOperation | Unsupported operation. |
UnsupportedOperation.InvalidState | Invalid resource status. |
UnsupportedOperation.MutexOperationTaskRunning | The resource mutual exclusion operation is being executed. |
UnsupportedOperation.UnassignCidrBlock | IPv6 IP range is not assigned. |
Was this page helpful?