/** *

Describes the hardware of a database.

*/ export interface _RelationalDatabaseHardware { /** *

The number of vCPUs for the database.

*/ cpuCount?: number; /** *

The size of the disk for the database.

*/ diskSizeInGb?: number; /** *

The amount of RAM in GB for the database.

*/ ramSizeInGb?: number; } export declare type _UnmarshalledRelationalDatabaseHardware = _RelationalDatabaseHardware;