/** *

Describes a database bundle. A bundle describes the performance specifications of the database.

*/ export interface _RelationalDatabaseBundle { /** *

The ID for the database bundle.

*/ bundleId?: string; /** *

The name for the database bundle.

*/ name?: string; /** *

The cost of the database bundle in US currency.

*/ price?: number; /** *

The amount of RAM in GB (for example, 2.0) for the database bundle.

*/ ramSizeInGb?: number; /** *

The size of the disk for the database bundle.

*/ diskSizeInGb?: number; /** *

The data transfer rate per month in GB for the database bundle.

*/ transferPerMonthInGb?: number; /** *

The number of virtual CPUs (vCPUs) for the database bundle.

*/ cpuCount?: number; /** *

A Boolean value indicating whether the database bundle is encrypted.

*/ isEncrypted?: boolean; /** *

A Boolean value indicating whether the database bundle is active.

*/ isActive?: boolean; } export declare type _UnmarshalledRelationalDatabaseBundle = _RelationalDatabaseBundle;