Get the openstack keypairs for a given account and scope
GET/v1/cloudaccounts/openstack/:uid/properties/flavors
Get the openstack keypairs for a given account and scope
Request
Path Parameters
uid stringrequired
Query Parameters
project string
region string
domain string
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...