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 non basic services
|
|
|
|
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_private_domains
|
How many private domains an organization can have. (-1 represents an unlimited amount)
|
-1
|
|
|
memory_limit
|
How much memory in megabyte an organization can have.
|
|
|
|
instance_memory_limit
|
The maximum amount of memory in megabyte 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
|
The number of tasks that can be run per app. (-1 represents an unlimited amount)
|
-1
|
|
|
{
"name": "gold_quota",
"non_basic_services_allowed": true,
"total_services": -1,
"total_routes": -1,
"memory_limit": 5120,
"instance_memory_limit": 10240,
"app_instance_limit": 10,
"app_task_limit": 5
}
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": -1,
"memory_limit": 5120,
"instance_memory_limit": 10240,
"app_instance_limit": 10,
"app_task_limit": 5
}' -X POST \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTIwMCIsImVtYWlsIjoiZW1haWwtMTQwQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NjA1MDY2NDZ9.jYfiSOJMdYGgewJ3rjOzTUOKp_8DFJCTk7559zC7WQ4" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Status
201 Created
Body
{
"metadata": {
"guid": "27a0466e-53c0-439a-ab9f-3e56854302f9",
"url": "/v2/quota_definitions/27a0466e-53c0-439a-ab9f-3e56854302f9",
"created_at": "2016-04-06T00:17:26Z",
"updated_at": null
},
"entity": {
"name": "gold_quota",
"non_basic_services_allowed": true,
"total_services": -1,
"total_routes": -1,
"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
}
}
Headers