Modifies the name, description, or entries of a specific prefix list.
Description
- The specified CIDR block must be valid. For example, 10.0.0.0/8 is a valid CIDR block while 10.0.0.1/8 is not. For more information, see the What is CIDR? section in Network FAQ.
- When you add or delete an entry, you cannot specify duplicate CIDR blocks. Examples:
- For IPv4 CIDR blocks, you cannot specify the 10.0.0.0/8 CIDR block in two entries. You cannot specify the 10.0.0.1/32 CIDR block in one entry and the 10.0.0.1 CIDR block in another entry. These two CIDR blocks are the same.
- For IPv6 CIDR blocks, you cannot specify the 2001:fd01:0:0:0:0:0:0/32 CIDR block in one entry and the 2001:fd01::/32 CIDR block in another entry. These two CIDR blocks are the same.
- The CIDR block in an entry to be added cannot the same as that in an entry to be deleted. For example, when you add an entry in which the 10.0.0.0/8 CIDR block is specified, the entry to be deleted cannot have the 10.0.0.0/8 CIDR block specified.
- If you want to modify the description of an entry, you must specify the CIDR block
(
AddEntry.N.Cidr
) and new description (AddEntry.N.Description
) in the entry.
Debugging
Request parameters
Parameter | Type | Required | Example | Description |
---|---|---|---|---|
Action | String | Yes | ModifyPrefixList |
The operation that you want to perform. Set the value to ModifyPrefixList. |
RegionId | String | Yes | cn-chengdu |
The region ID of the prefix list. You can call the DescribeRegions operation to query the most recent region list. |
PrefixListId | String | Yes | pl-x1j1k5ykzqlixdcy**** |
The ID of the prefix list. |
PrefixListName | String | No | PrefixListNameSample |
The name of the prefix list. The name must be 2 to 128 characters in length. It must
start with a letter and cannot start with |
Description | String | No | This is description. |
The description of the prefix list. The description must be 2 to 256 characters in
length and cannot start with |
AddEntry.N.Description | String | No | Description Sample 01 |
The description in entry N. The description must be 2 to 32 characters in length and
cannot start with |
AddEntry.N.Cidr | String | Yes | 192.168.2.0/24 |
The CIDR block of entry N to be added to the prefix list. Valid values of N: 0 to 200. Take note of the following items when you add the entries:
|
RemoveEntry.N.Cidr | String | Yes | 192.168.1.0/24 |
The CIDR block of entry N to be deleted from the prefix list. Valid values of N: 0 to 200. Take note of the following items when you delete the entries:
|
Response parameters
Parameter | Type | Example | Description |
---|---|---|---|
RequestId | String | 38793DB8-A4B2-4AEC-BFD3-111234E9188D |
The ID of the request. |
Examples
Sample requests
http(s)://ecs.aliyuncs.com/?Action=ModifyPrefixList
&RegionId=cn-chengdu
&PrefixListId=pl-x1j1k5ykzqlixdcy****
&PrefixListName=PrefixListNameSample
&Description=This is description.
&AddEntry=[{"Description":"Description Sample 01","Cidr":"192.168.2.0/24"}]
&RemoveEntry=[{"Cidr":"192.168.1.0/24"}]
&<Common request parameters>
Sample success responses
XML
format
HTTP/1.1 200 OK
Content-Type:application/xml
<ModifyPrefixListResponse>
<RequestId>38793DB8-A4B2-4AEC-BFD3-111234E9188D</RequestId>
</ModifyPrefixListResponse>
JSON
format
HTTP/1.1 200 OK
Content-Type:application/json
{
"RequestId" : "38793DB8-A4B2-4AEC-BFD3-111234E9188D"
}
Error codes
HTTP status code | Error code | Error message | Description |
---|---|---|---|
400 | MissingParameter | %s | The error message returned because a required parameter is not specified. |
400 | InvalidParameter.PrefixListName | The parameter PrefixListName is not valid. | The error message returned because the specified PrefixListName parameter is invalid. |
400 | InvalidParameter.CidrDuplicated | %s | The error message returned because duplicate CIDR blocks are specified in one or more entries. |
400 | InvalidParameter.CidrMalformed | %s | The error message returned because the specified CIDR block is invalid. |
400 | LimitExceed.MaxEntries | The number of entries exceeds the MaxEntries of the specified prefix list. | The error message returned because the number of specified entries exceed the maximum number of entries that can be supported by the specified prefix list. |
400 | LimitExceed.Entry | The number of entries added or removed exceeds the limit. | The error message returned because the number of entries to add or remove at a time exceeds the limit. |
404 | InvalidPrefixListId.NotFound | The specified prefix list was not found. | The error message returned because the specified prefix list does not exist. |
For a list of error codes, visit the API Error Center.