Creating a Organization Quota Definition
POST /v2/quota_definitions
Request
Route
POST /v2/quota_definitions
Body
Name |
Description |
Default |
Valid Values |
Example Values |
name
|
The name for the Organization Quota Definition.
|
|
|
|
non_basic_services_allowed
|
If an organization can have services that are not free
|
|
|
|
total_services
|
How many services an organization can have. (-1 represents an unlimited amount)
|
|
|
|
total_service_keys
|
How many service keys an organization can have. (-1 represents an unlimited amount)
|
-1
|
|
|
total_routes
|
How many routes an organization can have. (-1 represents an unlimited amount)
|
|
|
|
total_reserved_route_ports
|
How many routes an organization can have that use a reserved port. These routes count toward total_routes. (-1 represents an unlimited amount)
|
0
|
|
|
total_private_domains
|
How many private domains an organization can have. (-1 represents an unlimited amount)
|
-1
|
|
|
memory_limit
|
How much memory in megabytes an organization can have. (-1 represents an unlimited amount)
|
|
|
|
instance_memory_limit
|
The maximum amount of memory in megabytes an application instance can have. (-1 represents an unlimited amount)
|
-1
|
|
|
trial_db_allowed
|
If an organization can have a trial db.
|
|
|
|
app_instance_limit
|
How many app instances an organization can create. (-1 represents an unlimited amount)
|
-1
|
|
|
app_task_limit
|
Maximum number of running tasks in an organization. (-1 represents an unlimited amount)
|
-1
|
|
|
{
"name": "gold_quota",
"non_basic_services_allowed": true,
"total_services": -1,
"total_routes": 4,
"memory_limit": 5120,
"instance_memory_limit": 10240,
"app_instance_limit": 10,
"app_task_limit": 5,
"total_reserved_route_ports": 3
}
Headers
cURL
curl "https://api.[your-domain.com]/v2/quota_definitions" -d '{
"name": "gold_quota",
"non_basic_services_allowed": true,
"total_services": -1,
"total_routes": 4,
"memory_limit": 5120,
"instance_memory_limit": 10240,
"app_instance_limit": 10,
"app_task_limit": 5,
"total_reserved_route_ports": 3
}' -X POST \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTMzMSIsImVtYWlsIjoiZW1haWwtMjI2QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NjYwMDg4OTl9.OI-5vwwN6P9WSntLafBO0woaa2gI6KpTl38WlHlh9eE" \
-H "Host: example.org" \
-H "Content-Type: application/json" \
-H "Cookie: "
Response
Status
201 Created
Body
{
"metadata": {
"guid": "0a3df5cb-122e-4849-a6b1-abb70d1b1296",
"url": "/v2/quota_definitions/0a3df5cb-122e-4849-a6b1-abb70d1b1296",
"created_at": "2016-06-08T16:41:39Z",
"updated_at": "2016-06-08T16:41:26Z"
},
"entity": {
"name": "gold_quota",
"non_basic_services_allowed": true,
"total_services": -1,
"total_routes": 4,
"total_private_domains": -1,
"memory_limit": 5120,
"trial_db_allowed": false,
"instance_memory_limit": 10240,
"app_instance_limit": 10,
"app_task_limit": 5,
"total_service_keys": -1,
"total_reserved_route_ports": 3
}
}
Headers