action bluemix_put_containers_quota { label: "Update space quota" description: "This endpoint updates the quota that is allocated to a Bluemix space. \n\n **Note**: Only paid accounts are eligbile to update the space quota. If you are using a free-trial account, upgrade to a paid account first." provider: bluemix method: PUT path: "/containers/quota" encoding: json input: { type: "object" properties: { "X-Auth-Project-Id": { type: "string" } "X-Auth-Token": { type: "string" } floating_ips: { type: "integer" format: "int32" description: "The new number of public IP addresses that you want to assign to your space." } ram: { type: "integer" format: "int32" description: "The amount of container memory that you want to assign to your space." } } required: ["X-Auth-Project-Id", "X-Auth-Token"] additionalProperties: false } output: { type: "object" additionalProperties: true } }