Get Ip Space Org Quota

Get Ip Space Org Quota

Retrieves a specific IP Space Org Quota.

Request
URI
GET
https://{api_host}/cloudapi/vcf/ipSpaces/orgQuotas/{orgQuotaId}
COPY
Path Parameters
string
orgQuotaId
Required

orgQuotaId


Authentication
This operation uses the following authentication methods.
Responses
200
Returns IpAddressSpaceOrgQuota of type(s) application/json;version=40.0
{
    "id": "urn:vcloud:ipSpaceOrgQuota:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
    "ipSpaceRef": {
        "name": "string",
        "id": "string"
    },
    "orgRef": {
        "name": "string",
        "id": "string"
    },
    "ipSpaceType": "string",
    "defaultQuota": {
        "maxIpCount": 0,
        "maxCidrCount": 0,
        "maxSubnetSize": 24
    },
    "customQuota": {
        "maxIpCount": 0,
        "maxCidrCount": 0,
        "maxSubnetSize": 24
    }
}
string
id
Optional

The identifier of the IP Space Org Quota in URN format.

object
ipSpaceRef
Required

Entity reference used to describe VCD entities

object
orgRef
Required

Entity reference used to describe VCD entities

string
ipSpaceType
Optional

The type of the IP Space. Possible values are:

  • PUBLIC
  • PRIVATE
object
defaultQuota
Optional

IP Space quota defines the maximum number of IPv4 IPs and CIDRs that can be allocated and used by the IP Space across all its Internal Scopes.

object
customQuota
Optional

IP Space quota defines the maximum number of IPv4 IPs and CIDRs that can be allocated and used by the IP Space across all its Internal Scopes.


Code Samples
COPY
                    curl -H 'Authorization: <value>' https://{api_host}/cloudapi/vcf/ipSpaces/orgQuotas/{orgQuotaId}