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 services that are not free
|
|
|
|
total_services
|
How many services a space can have. (-1 represents an unlimited amount)
|
|
|
|
total_routes
|
How many routes a space can have. (-1 represents an unlimited amount)
|
|
|
|
total_reserved_route_ports
|
How many routes a space can have that use a reserved port. These routes count toward total_routes. (-1 represents an unlimited amount; subject to org quota)
|
-1
|
|
|
memory_limit
|
How much memory in megabytes a space can have.
|
|
|
|
total_service_keys
|
How many service keys an organization can have. (-1 represents an unlimited amount)
|
-1
|
|
|
instance_memory_limit
|
The maximum amount of memory in megabytes an application instance can have. (-1 represents an unlimited amount)
|
-1
|
|
|
app_instance_limit
|
How many app instances a space can create. (-1 represents an unlimited amount)
|
-1
|
|
|
organization_guid
|
The owning organization of the space quota
|
|
|
- guid-77e1c6ab-d6c7-4ad1-9341-8118a3aa8521
|
app_task_limit
|
Maximum number of running tasks in a space. (-1 represents an unlimited amount)
|
5
|
|
|
{
"name": "gold_quota",
"non_basic_services_allowed": true,
"total_services": -1,
"total_routes": 10,
"memory_limit": 5120,
"organization_guid": "c9b4ac17-ab4b-4368-b3e2-5cbf09b17a24",
"total_reserved_route_ports": 5
}
Headers
cURL
curl "https://api.[your-domain.com]/v2/space_quota_definitions" -d '{
"name": "gold_quota",
"non_basic_services_allowed": true,
"total_services": -1,
"total_routes": 10,
"memory_limit": 5120,
"organization_guid": "c9b4ac17-ab4b-4368-b3e2-5cbf09b17a24",
"total_reserved_route_ports": 5
}' -X POST \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE0NiIsImVtYWlsIjoiZW1haWwtMTAxQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NjYwMDg4ODl9.ePc2Tr23QB3-OZdEZoYBE46YtTPpcc0E5M-9fn05eZE" \
-H "Host: example.org" \
-H "Content-Type: application/json" \
-H "Cookie: "
Response
Status
201 Created
Body
{
"metadata": {
"guid": "17f055b8-b4c8-47cf-8737-0220d5706b4a",
"url": "/v2/space_quota_definitions/17f055b8-b4c8-47cf-8737-0220d5706b4a",
"created_at": "2016-06-08T16:41:29Z",
"updated_at": "2016-06-08T16:41:26Z"
},
"entity": {
"name": "gold_quota",
"organization_guid": "c9b4ac17-ab4b-4368-b3e2-5cbf09b17a24",
"non_basic_services_allowed": true,
"total_services": -1,
"total_routes": 10,
"memory_limit": 5120,
"instance_memory_limit": -1,
"app_instance_limit": -1,
"app_task_limit": 5,
"total_service_keys": -1,
"total_reserved_route_ports": 5,
"organization_url": "/v2/organizations/c9b4ac17-ab4b-4368-b3e2-5cbf09b17a24",
"spaces_url": "/v2/space_quota_definitions/17f055b8-b4c8-47cf-8737-0220d5706b4a/spaces"
}
}
Headers