Home
Version 3
Space Quota Definitions API

Space Quota Definitions API

Creating a Space Quota Definition

POST /v2/space_quota_definitions

Request

Route

POST /v2/space_quota_definitions

Body

Name Description Default Valid Values Example Values
name The name for the Space Quota Definition.
  • gold_quota
non_basic_services_allowed If a space can have non basic services
  • true
  • false
total_services How many services a space can have.
  • 5
  • 201
total_routes How many routes a space can have.
  • 10
  • 23
memory_limit How much memory in megabytes a space can have.
  • 5120
  • 10024
instance_memory_limit The maximum amount of memory in megabytes an application instance can have. (-1 represents an unlimited amount) -1
  • -1
  • 10024
organization_guid The owning organization of the space quota
  • guid-f9653898-43a8-445e-9363-7c30a2ae1698
{
  "name": "gold_quota",
  "non_basic_services_allowed": true,
  "total_services": 5,
  "total_routes": 10,
  "memory_limit": 5120,
  "organization_guid": "c930284b-a30f-482c-a574-af689931eaea"
}

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE4MSIsImVtYWlsIjoiZW1haWwtMTMzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MjYxODc3NDZ9.CEw7J3Sch9EATEaQwpAfSx9hps16znWmveRmao_HeU8
Host: example.org
Content-Type: application/x-www-form-urlencoded
Cookie: 

cURL

curl "https://api.[your-domain.com]/v2/space_quota_definitions" -d '{
  "name": "gold_quota",
  "non_basic_services_allowed": true,
  "total_services": 5,
  "total_routes": 10,
  "memory_limit": 5120,
  "organization_guid": "c930284b-a30f-482c-a574-af689931eaea"
}' -X POST \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE4MSIsImVtYWlsIjoiZW1haWwtMTMzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MjYxODc3NDZ9.CEw7J3Sch9EATEaQwpAfSx9hps16znWmveRmao_HeU8" \
	-H "Host: example.org" \
	-H "Content-Type: application/x-www-form-urlencoded" \
	-H "Cookie: "

Response

Status

201 Created

Body

{
  "metadata": {
    "guid": "56ce313a-5433-4991-af6c-7b6058c1e315",
    "url": "/v2/space_quota_definitions/56ce313a-5433-4991-af6c-7b6058c1e315",
    "created_at": "2015-03-05T19:15:46Z",
    "updated_at": null
  },
  "entity": {
    "name": "gold_quota",
    "organization_guid": "c930284b-a30f-482c-a574-af689931eaea",
    "non_basic_services_allowed": true,
    "total_services": 5,
    "total_routes": 10,
    "memory_limit": 5120,
    "instance_memory_limit": -1,
    "organization_url": "/v2/organizations/c930284b-a30f-482c-a574-af689931eaea",
    "spaces_url": "/v2/space_quota_definitions/56ce313a-5433-4991-af6c-7b6058c1e315/spaces"
  }
}

Headers

Content-Type: application/json;charset=utf-8
Location: /v2/space_quota_definitions/56ce313a-5433-4991-af6c-7b6058c1e315
X-VCAP-Request-ID: e7278fe6-a6b8-402f-8f50-b2bc88ca1a90
Content-Length: 651
X-Content-Type-Options: nosniff