Home
Version 3
Space Quota Definitions API

Space Quota Definitions API

Creating a Space Quota Definition

POST /v2/space_quota_definitions

Request

Route

POST /v2/space_quota_definitions

Body

Name Description Default Valid Values Example Values
name The name for the Space Quota Definition.
  • gold_quota
non_basic_services_allowed If a space can have non basic services
  • true
  • false
total_services How many services a space can have.
  • 5
  • 201
total_routes How many routes a space can have.
  • 10
  • 23
memory_limit How much memory in megabytes a space can have.
  • 5120
  • 10024
instance_memory_limit The maximum amount of memory in megabytes an application instance can have. (-1 represents an unlimited amount) -1
  • -1
  • 10024
app_instance_limit How many app instances a space can create. (-1 represents an unlimited amount) -1
  • -1
  • 10
  • 23
organization_guid The owning organization of the space quota
  • guid-a88b1f96-e55a-404a-9caf-11c42765a288
{
  "name": "gold_quota",
  "non_basic_services_allowed": true,
  "total_services": 5,
  "total_routes": 10,
  "memory_limit": 5120,
  "organization_guid": "6afbe375-ac0b-4a0a-9a31-bc68d0f215a5"
}

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI0MSIsImVtYWlsIjoiZW1haWwtMTcyQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDk1MzE1MjZ9.RPRGr9eUbCMm-AXVCt_asHLrLIENOLUf9uIPYP2p2Ac
Host: example.org
Content-Type: application/x-www-form-urlencoded
Cookie: 

cURL

curl "https://api.[your-domain.com]/v2/space_quota_definitions" -d '{
  "name": "gold_quota",
  "non_basic_services_allowed": true,
  "total_services": 5,
  "total_routes": 10,
  "memory_limit": 5120,
  "organization_guid": "6afbe375-ac0b-4a0a-9a31-bc68d0f215a5"
}' -X POST \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI0MSIsImVtYWlsIjoiZW1haWwtMTcyQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDk1MzE1MjZ9.RPRGr9eUbCMm-AXVCt_asHLrLIENOLUf9uIPYP2p2Ac" \
	-H "Host: example.org" \
	-H "Content-Type: application/x-www-form-urlencoded" \
	-H "Cookie: "

Response

Status

201 Created

Body

{
  "metadata": {
    "guid": "2c2b0a6a-94a3-403a-a34c-bcf331163059",
    "url": "/v2/space_quota_definitions/2c2b0a6a-94a3-403a-a34c-bcf331163059",
    "created_at": "2015-11-30T23:38:46Z",
    "updated_at": null
  },
  "entity": {
    "name": "gold_quota",
    "organization_guid": "6afbe375-ac0b-4a0a-9a31-bc68d0f215a5",
    "non_basic_services_allowed": true,
    "total_services": 5,
    "total_routes": 10,
    "memory_limit": 5120,
    "instance_memory_limit": -1,
    "app_instance_limit": -1,
    "organization_url": "/v2/organizations/6afbe375-ac0b-4a0a-9a31-bc68d0f215a5",
    "spaces_url": "/v2/space_quota_definitions/2c2b0a6a-94a3-403a-a34c-bcf331163059/spaces"
  }
}

Headers

Content-Type: application/json;charset=utf-8
Location: /v2/space_quota_definitions/2c2b0a6a-94a3-403a-a34c-bcf331163059
X-VCAP-Request-ID: 
Content-Length: 681
X-Content-Type-Options: nosniff