Get Ip Prefix Sequences

Get Ip Prefix Sequences

Get the sequences of network addresses which can be generated from an IP Prefix. "startingPrefixIpAddress", "prefixLength" and "prefixCount" filters are required. For Example: An IP Prefix with startingPrefixIpAddress 192.168.0.0 and prefixLength 30 and prefixCount 3 will result in generation of 3 sequences each with 4 IP addresses as: 192.168.0.0/30, 192.168.0.4/30 and 192.168.0.8/30 Filter example:(filter=startingPrefixIpAddress==192.168.0.0;prefixLength==30;prefixCount==3)

Request
URI
GET
https://{api_host}/cloudapi/1.0.0/ipSpaces/ipPrefixSequences
COPY
Query Parameters
string
filter
Optional

Filter for a query. FIQL format.


Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns IpPrefixSequenceList of type(s) application/json;version=37.2
{
    "sequences": [
        "string"
    ],
    "lastSequence": "string"
}
array of string
sequences
Optional

Ordered list of IP prefix sequences which can be generated. Number of sequences will be limited to the first 10 sequences if specified prefixCount is greater than 10.

string
lastSequence
Optional

Last sequence which can be generated based on input values for IP Prefix.