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-5c6b696e-5d3d-4812-86fc-8f8109f4fb5a
|
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": "38cad6a9-2973-4ecb-aa11-8e7152244400"
}
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": "38cad6a9-2973-4ecb-aa11-8e7152244400"
}' -X POST \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTM2NCIsImVtYWlsIjoiZW1haWwtMjY3QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MjQxMzczNzl9.OlZxunSRFG7rhith5i53DxSr5zHl-6JjBEYRc4_izAk" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Headers
Status
201 Created
Body
{
"metadata": {
"guid": "de4d7139-f6c1-40ee-87b2-88b5fd12e28a",
"url": "/v2/space_quota_definitions/de4d7139-f6c1-40ee-87b2-88b5fd12e28a",
"created_at": "2015-02-10T01:42:59Z",
"updated_at": null
},
"entity": {
"name": "gold_quota",
"organization_guid": "38cad6a9-2973-4ecb-aa11-8e7152244400",
"non_basic_services_allowed": true,
"total_services": 5,
"total_routes": 10,
"memory_limit": 5120,
"instance_memory_limit": -1,
"organization_url": "/v2/organizations/38cad6a9-2973-4ecb-aa11-8e7152244400",
"spaces_url": "/v2/space_quota_definitions/de4d7139-f6c1-40ee-87b2-88b5fd12e28a/spaces"
}
}