Creating a Space Quota Definition
POST /v2/space_quota_definitions
Fields
Name |
Description |
Default |
Valid Values |
Example Values |
name
|
The name for the Space Quota Definition.
|
|
|
|
non_basic_services_allowed
|
If a space can have non basic services
|
|
|
|
total_services
|
How many services a space can have.
|
|
|
|
total_routes
|
How many routes a space can have.
|
|
|
|
memory_limit
|
How much memory in megabytes a space can have.
|
|
|
|
instance_memory_limit
|
The maximum amount of memory in megabytes an application instance can have. (-1 represents an unlimited amount)
|
-1
|
|
|
organization_guid
|
The owning organization of the space quota
|
|
|
- guid-52a5e605-ebe8-496f-8c1a-4dfc780d9152
|
Request
Headers
Route
POST /v2/space_quota_definitions
Body
{
"name": "gold_quota",
"non_basic_services_allowed": true,
"total_services": 5,
"total_routes": 10,
"memory_limit": 5120,
"organization_guid": "b5333c46-6512-4e45-96db-75bc4131b35a"
}
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": "b5333c46-6512-4e45-96db-75bc4131b35a"
}' -X POST \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE3MCIsImVtYWlsIjoiZW1haWwtMTQzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTc0NjIzNjF9.W1H7SnNxABD_l08XdK6k05gua9x3sKJW6t0GCEREx_4" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Headers
Status
201 Created
Body
{
"metadata": {
"guid": "1117a583-9981-4e0b-a078-3f834f968301",
"url": "/v2/space_quota_definitions/1117a583-9981-4e0b-a078-3f834f968301",
"created_at": "2014-11-24T19:32:41+00:00",
"updated_at": null
},
"entity": {
"name": "gold_quota",
"organization_guid": "b5333c46-6512-4e45-96db-75bc4131b35a",
"non_basic_services_allowed": true,
"total_services": 5,
"total_routes": 10,
"memory_limit": 5120,
"instance_memory_limit": -1,
"organization_url": "/v2/organizations/b5333c46-6512-4e45-96db-75bc4131b35a",
"spaces_url": "/v2/space_quota_definitions/1117a583-9981-4e0b-a078-3f834f968301/spaces"
}
}