Creating a Organization Quota Definition
POST /v2/quota_definitions
Fields
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.
|
|
|
|
total_routes
|
How many routes an organization can have.
|
|
|
|
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.
|
|
|
|
Request
Headers
Route
POST /v2/quota_definitions
Body
{
"name": "gold_quota",
"non_basic_services_allowed": true,
"total_services": 5,
"total_routes": 10,
"memory_limit": 5120,
"instance_memory_limit": 10240
}
cURL
curl "https://api.[your-domain.com]/v2/quota_definitions" -d '{
"name": "gold_quota",
"non_basic_services_allowed": true,
"total_services": 5,
"total_routes": 10,
"memory_limit": 5120,
"instance_memory_limit": 10240
}' -X POST \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTc1IiwiZW1haWwiOiJlbWFpbC02OEBzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIuYWRtaW4iXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDE3NDYyMzU1fQ.AsUhW7dcAIno1-oE26cKbR6c5JdNguTrDM9qqWfjvIs" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Headers
Status
201 Created
Body
{
"metadata": {
"guid": "58695c69-69e5-449f-b878-bb545a28aa55",
"url": "/v2/quota_definitions/58695c69-69e5-449f-b878-bb545a28aa55",
"created_at": "2014-11-24T19:32:35+00:00",
"updated_at": null
},
"entity": {
"name": "gold_quota",
"non_basic_services_allowed": true,
"total_services": 5,
"total_routes": 10,
"memory_limit": 5120,
"trial_db_allowed": false,
"instance_memory_limit": 10240
}
}