Returns the OpenStack flavors
GET/v1/clouds/openstack/flavors
Returns the OpenStack flavors
Request
Query Parameters
cloudAccountUid string
Uid for the specific OpenStack cloud account
project string
project for which OpenStack flavors are requested
region string
region for which OpenStack flavors are requested
domain string
domain for which OpenStack flavors are requested
Header Parameters
ProjectUid string
Scope the request to the specified project uid
Responses
- 200
(empty)
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
items
object[]
required
diskinteger
Disk is the amount of root disk, measured in GB
ephemeralinteger
Ephemeral is the amount of ephemeral disk space, measured in GB
idstring
ID is the flavor's unique ID
memoryinteger
Amount of memory, measured in MB
namestring
Name is the name of the flavor
vcpusinteger
VCPUs indicates how many (virtual) CPUs are available for this flavor
{
"items": [
{
"disk": 0,
"ephemeral": 0,
"id": "string",
"memory": 0,
"name": "string",
"vcpus": 0
}
]
}
Loading...