Skip to main content
GET
/
api
/
v1
/
organizations
/
{organizationID}
/
regions
/
{regionID}
/
flavors
List flavors
curl --request GET \
  --url https://api.example.com/api/v1/organizations/{organizationID}/regions/{regionID}/flavors \
  --header 'Authorization: Bearer <token>'
[
  {
    "metadata": {
      "id": "9a8c6370-4065-4d4a-9da0-7678df40cd9d",
      "name": "g.4.highmem.a100.1g.10gb",
      "creationTime": "1970-01-01T00:00:00Z"
    },
    "spec": {
      "cpus": 4,
      "cpuFamily": "Intel Xeon Platinum 8160T (Skylake)",
      "disk": 20,
      "memory": 32,
      "gpu": {
        "vendor": "AMD",
        "model": "Instinct MI250",
        "memory": 64,
        "physicalCount": 1,
        "logicalCount": 2
      }
    }
  }
]

Authorizations

Authorization
string
header
required

Operation requires OAuth 2.0 bearer token authentication.

Path Parameters

organizationID
string
required

The organization ID. A Kubernetes name. Must be a valid DNS containing only lower case characters, numbers or hyphens, start and end with a character or number, and be at most 63 characters in length.

Required string length: 1 - 63
regionID
string
required

The region ID. A Kubernetes name. Must be a valid DNS containing only lower case characters, numbers or hyphens, start and end with a character or number, and be at most 63 characters in length.

Required string length: 1 - 63

Response

A list of flavors.

metadata
object
required

This metadata is for resources that just exist, and don't require any provisioning and health status, but benefit from a standardized metadata format.

Metadata required for all API resource reads and writes.

spec
object
required

A flavor.