Updating a Organization Quota Definition
PUT /v2/quota_definitions/:guid
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.
|
|
|
|
Parameters
Name |
Description |
Valid Values |
Example Values |
guid
|
The guid of the Organization Quota Definition
|
|
|
Request
Headers
Route
PUT /v2/quota_definitions/7fbe252f-dae1-4cf9-a0a7-13945b118b3e
Body
{
}
cURL
curl "https://api.[your-domain.com]/v2/quota_definitions/7fbe252f-dae1-4cf9-a0a7-13945b118b3e" -d '{
}' -X PUT \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI2NCIsImVtYWlsIjoiZW1haWwtMjA0QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MjIzMjM1NTB9.kf4HU8f_dkZEekMJPDFDSQN-1OclwAGZbw-Z3SFQb2k" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Headers
Status
201 Created
Body
{
"metadata": {
"guid": "7fbe252f-dae1-4cf9-a0a7-13945b118b3e",
"url": "/v2/quota_definitions/7fbe252f-dae1-4cf9-a0a7-13945b118b3e",
"created_at": "2015-01-20T01:52:30+00:00",
"updated_at": "2015-01-20T01:52:30+00:00"
},
"entity": {
"name": "name-1803",
"non_basic_services_allowed": true,
"total_services": 60,
"total_routes": 1000,
"memory_limit": 20480,
"trial_db_allowed": false,
"instance_memory_limit": -1
}
}