Updating a Organization Quota Definition
PUT /v2/quota_definitions/:guid
Request
Route
PUT /v2/quota_definitions/213b27a0-c937-4074-aade-bba2226980aa
Parameters
Name |
Description |
Valid Values |
Example Values |
guid
|
The guid of the Organization Quota Definition
|
|
|
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
|
The maximum amount of memory in megabytes an application instance can have. (-1 represents an unlimited amount)
|
|
|
|
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
|
Maximum number of running tasks in an organization. (-1 represents an unlimited amount)
|
-1
|
|
|
{
}
Headers
cURL
curl "https://api.[your-domain.com]/v2/quota_definitions/213b27a0-c937-4074-aade-bba2226980aa" -d '{
}' -X PUT \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTMzMiIsImVtYWlsIjoiZW1haWwtMjI3QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NjYwMDg4OTl9.cNl6syslTs86UeaDxvmUS-oiS_FyyZvg9kMPpzJ-M1Q" \
-H "Host: example.org" \
-H "Content-Type: application/json" \
-H "Cookie: "
Response
Status
201 Created
Body
{
"metadata": {
"guid": "213b27a0-c937-4074-aade-bba2226980aa",
"url": "/v2/quota_definitions/213b27a0-c937-4074-aade-bba2226980aa",
"created_at": "2016-06-08T16:41:39Z",
"updated_at": "2016-06-08T16:41:39Z"
},
"entity": {
"name": "name-1998",
"non_basic_services_allowed": true,
"total_services": 60,
"total_routes": 1000,
"total_private_domains": -1,
"memory_limit": 20480,
"trial_db_allowed": false,
"instance_memory_limit": -1,
"app_instance_limit": -1,
"app_task_limit": -1,
"total_service_keys": -1,
"total_reserved_route_ports": 5
}
}
Headers