Domain name for API request: vpc.tencentcloudapi.com.
This API (AssignIpv6Addresses) is used to apply for an IPv6 address for the ENI.
This API is completed asynchronously. If you need to query the async execution results, use the RequestId
returned by this API to query the QueryTask
API.
IPv6
address when applying. The address type cannot be the primary IP
. Currently, IPv6
can only be supported as the secondary IP
.IPv6
addresses on ENI, the API will return the specified number of secondary IPv6
addresses in the subnet range where the ENI is located.A maximum of 20 requests can be initiated per second for this API.
Note: This API supports Finance regions. If the common parameter Region is a Finance region, a domain name with the Finance region needs to be specified, for example: vpc.ap-shanghai-fsi.tencentcloudapi.com
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 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,
"PublicIpAddress": "3402:4e00:20:1202::1",
"Description": "test1",
"IsWanIpBlocked": false,
"State": "PENDING"
},
{
"Address": "3402:4e00:20:1202::2",
"AddressId": "",
"Primary": false,
"PublicIpAddress": "3402:4e00:20:1202::2",
"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,
"PublicIpAddress": "3402:4e00:20:1202:0:8d05:c272:f514",
"Description": "",
"IsWanIpBlocked": false,
"State": "PENDING"
},
{
"Address": "3402:4e00:20:1202:0:8d05:c272:f559",
"AddressId": "",
"Primary": false,
"PublicIpAddress": "3402:4e00:20:1202:0:8d05:c272:f559",
"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. |
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?