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-5ec12fc3-5d58-434b-bf10-a1b858f749f1
|
{
"name": "gold_quota",
"non_basic_services_allowed": true,
"total_services": 5,
"total_routes": 10,
"memory_limit": 5120,
"organization_guid": "83339a7e-e72e-4fce-ac3c-5feeee6d1733"
}
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": "83339a7e-e72e-4fce-ac3c-5feeee6d1733"
}' -X POST \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTM3NCIsImVtYWlsIjoiZW1haWwtMjY0QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0Mzg2NDE4MTJ9.ib5PYqSklbY8YHis5bfDILBgWWBsROP5VSYxWefJKU4" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Status
201 Created
Body
{
"metadata": {
"guid": "348edc60-eb9a-4416-b9ff-b66b028ea70c",
"url": "/v2/space_quota_definitions/348edc60-eb9a-4416-b9ff-b66b028ea70c",
"created_at": "2015-07-27T22:43:32Z",
"updated_at": null
},
"entity": {
"name": "gold_quota",
"organization_guid": "83339a7e-e72e-4fce-ac3c-5feeee6d1733",
"non_basic_services_allowed": true,
"total_services": 5,
"total_routes": 10,
"memory_limit": 5120,
"instance_memory_limit": -1,
"organization_url": "/v2/organizations/83339a7e-e72e-4fce-ac3c-5feeee6d1733",
"spaces_url": "/v2/space_quota_definitions/348edc60-eb9a-4416-b9ff-b66b028ea70c/spaces"
}
}
Headers