@akamai/openapi-ts
    Preparing search index...

    Type Alias GetDatabasesTypeResponses

    type GetDatabasesTypeResponses = {
        "200": {
            class: "dedicated" | "shared" | "premium";
            disk: number;
            engines: {
                mysql: {
                    price: { hourly: number; monthly: number };
                    quantity: 1 | 2 | 3;
                }[];
                postgresql: {
                    price: { hourly: number; monthly: number };
                    quantity: 1 | 2 | 3;
                }[];
            };
            id: string;
            label: string;
            memory: number;
            vcpus: number;
        };
    }
    Index

    Properties

    Properties

    "200": {
        class: "dedicated" | "shared" | "premium";
        disk: number;
        engines: {
            mysql: {
                price: { hourly: number; monthly: number };
                quantity: 1 | 2 | 3;
            }[];
            postgresql: {
                price: { hourly: number; monthly: number };
                quantity: 1 | 2 | 3;
            }[];
        };
        id: string;
        label: string;
        memory: number;
        vcpus: number;
    }

    Managed Database plan type object.

    Type Declaration

    • class: "dedicated" | "shared" | "premium"

      The Linode class category. This can be dedicated, shared, or premium.

      📘

      Premium plan Linodes are available in limited regions.

    • disk: number

      The amount of disk space set aside for Databases of this plan type. The value is represented in megabytes.

    • engines: {
          mysql: {
              price: { hourly: number; monthly: number };
              quantity: 1 | 2 | 3;
          }[];
          postgresql: {
              price: { hourly: number; monthly: number };
              quantity: 1 | 2 | 3;
          }[];
      }

      Information for the supported third-party databases that can be used with Managed Databases.

      • mysql: { price: { hourly: number; monthly: number }; quantity: 1 | 2 | 3 }[]

        Pricing details for MySQL Managed Databases.

      • postgresql: { price: { hourly: number; monthly: number }; quantity: 1 | 2 | 3 }[]

        Pricing details for PostgreSQL Managed Databases.

    • Readonlyid: string

      Read-only The ID representing the Managed Database node plan type.

    • Readonlylabel: string

      Read-only A human-readable string that describes each plan type. For display purposes only.

    • memory: number

      The amount of RAM allocated to Database created of this plan type. The value is represented in megabytes.

    • vcpus: number

      The number of CPUs allocated to databases of this plan type.