action bluemix_get_containers_quota { label: "Retrieve organization and space specific quota" description: "Retrieve the quota that is assigned to the organization and space." provider: bluemix method: GET path: "/containers/quota" encoding: json input: { type: "object" properties: { "X-Auth-Project-Id": { type: "string" } "X-Auth-Token": { type: "string" } } required: ["X-Auth-Project-Id", "X-Auth-Token"] additionalProperties: false } output: { properties: { account_type: { type: "string" description: "The Bluemix account type indicating the quota limits and how the organization is billed." } country_code: { type: "string" description: "The country in which the account was opened." } org_quota: { type: "object" properties: { floating_ips_max: { type: "string" description: "The number of public IP addresses that can be assigned across all spaces of the organization." } floating_ips_space_default: { type: "string" description: "The number of public IP addresses that are required for one space. If the number of public IP addresses is not available, then a new space cannot be created to be used with IBM Containers. " } floating_ips_usage: { type: "integer" format: "int32" description: "The number of public IP addresses that are currently assigned to the spaces of the organization." } ram_max: { type: "integer" format: "int32" description: "The maximum amount of container memory on the compute host that can be assigned across the spaces of the organization." } ram_space_default: { type: "integer" format: "int32" description: "The amount of container memory that is required to be used for one space. If this amount is not available, then a new space cannot be created to be used with IBM Containers. " } ram_usage: { type: "integer" format: "int32" description: "The amount of container memory that is currently used across all spaces of the organization." } subnet_usage: { type: "integer" format: "int32" description: "The number of subnets that were created across all spaces of the organization." } subnets_default: { type: "integer" format: "int32" description: "The number of subnets that is required to create a new space. If this number is not available, then a new space cannot be created to be used with IBM Containers." } subnets_max: { type: "integer" format: "int32" description: "The maximum number of container private subnet that can be created across all spaces of the organization." } } } space_quota: { type: "object" properties: { floating_ips_max: { type: "string" description: "The maximum number of public IP addresses that can be allocated to a space." } ram_max: { type: "integer" format: "int32" description: "The maximum amount of container memory that can be shared across all containers that are created in a space." } subnets_max: { type: "integer" format: "int32" description: "The maximum number of private subnets that can be created in one space." } } } } } }