Get Ip Space Uplinks

Get Ip Space Uplinks

Get all the IP Space Uplinks for a specified Provider Gateway. Note that the filter parameter "externalNetworkRef.id" is required. An External Network is used to reference the Provider Gateway since the External Network is backed by a Provider Gateway. Supports the optional filter "requireInterfaces", which will only return uplinks with at least one interface. (requireInterfaces==true)

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

Filter for a query. FIQL format.

string
sortAsc
Optional

Field to use for ascending sort

string
sortDesc
Optional

Field to use for descending sort

integer
page
Required
Constraints: minimum: 1 default: 1

Page to fetch, zero offset.

integer
pageSize
Required
Constraints: minimum: 0 maximum: 128 default: 25

Results per page to fetch.


Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns IpSpaceUplinks of type(s) application/json;version=39.1
This response body class contains all of the following: InlineIpSpaceUplinks0 , InlineIpSpaceUplinks1
{
    "resultTotal": 0,
    "pageCount": 0,
    "page": 0,
    "pageSize": 0,
    "associations": [
        {
            "entityId": "string",
            "associationId": "string"
        }
    ],
    "values": [
        {
            "status": {},
            "id": "urn:vcloud:ipSpaceUplink:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
            "name": "string",
            "description": "string",
            "externalNetworkRef": {
                "name": "string",
                "id": "string"
            },
            "ipSpaceRef": {
                "name": "string",
                "id": "string"
            },
            "ipSpaceType": "string",
            "interfaces": [
                {
                    "id": "string",
                    "name": "string",
                    "interfaceType": "string"
                }
            ]
        }
    ]
}

Code Samples
COPY
                    curl -H 'Authorization: <value>' https://{api_host}/cloudapi/1.0.0/ipSpaceUplinks?page=value&pageSize=v