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.
|
|
|
|
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-aac9c6a4-b7c5-4512-aeae-01c6edf7a2a4
|
{
"name": "gold_quota",
"non_basic_services_allowed": true,
"total_services": 5,
"total_routes": 10,
"memory_limit": 5120,
"organization_guid": "292dcdec-005b-454f-abf6-b3dc6ab8eb9e"
}
Headers
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": "292dcdec-005b-454f-abf6-b3dc6ab8eb9e"
}' -X POST \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTExOCIsImVtYWlsIjoiZW1haWwtODBAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQyNzQ4MDg0NX0.YklbLPfI6hRsIrAk8XmgDPlHeMtAQpUN1Xo4mLguBuc" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Status
201 Created
Body
{
"metadata": {
"guid": "25cf9b35-c171-43f7-bef6-efddad43941d",
"url": "/v2/space_quota_definitions/25cf9b35-c171-43f7-bef6-efddad43941d",
"created_at": "2015-03-20T18:27:25Z",
"updated_at": null
},
"entity": {
"name": "gold_quota",
"organization_guid": "292dcdec-005b-454f-abf6-b3dc6ab8eb9e",
"non_basic_services_allowed": true,
"total_services": 5,
"total_routes": 10,
"memory_limit": 5120,
"instance_memory_limit": -1,
"organization_url": "/v2/organizations/292dcdec-005b-454f-abf6-b3dc6ab8eb9e",
"spaces_url": "/v2/space_quota_definitions/25cf9b35-c171-43f7-bef6-efddad43941d/spaces"
}
}
Headers