Update Ip Space Org Quota

Update Ip Space Org Quota

Updates a specific IP Space Org Quota. Only custom quotas applied to Organization can be modified.

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

orgQuotaId


Request Body
IpAddressSpaceOrgQuota of type(s) application/json
Required

Show optional properties

{
    "ipSpaceRef": {},
    "orgRef": {}
}
{
    "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.

Authentication
This operation uses the following authentication methods.
Responses
202

The request have been accepted and the task to monitor the request is in the Location header.

Operation doesn't return any data structure

Code Samples
COPY
                    curl -X PUT -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"ipSpaceRef:"object","orgRef:"object"}' https://{api_host}/cloudapi/vcf/ipSpaces/orgQuotas/{orgQuotaId}