Interface DatacenterInfo

Information about a datacenter.

interface DatacenterInfo {
    capacityUnits: number;
    cloudProvider: DatabaseCloudProvider;
    dateCreated: string;
    id: string;
    isPrimary: boolean;
    name: string;
    region: string;
    regionClassification: string;
    regionZone: string;
    secureBundleUrl: string;
    status: string;
    tier: DatabaseTier;
}

Properties

capacityUnits: number

The number of capacity units for the datacenter.

cloudProvider: DatabaseCloudProvider

The cloud provider where the datacenter is located.

dateCreated: string

The date the datacenter was created in ISO RFC3339 format.

id: string

The id of the datacenter.

isPrimary: boolean

Whether the datacenter is the primary datacenter.

name: string

The name of the datacenter.

region: string

The region where the datacenter is located.

regionClassification: string

The region classification of the datacenter.

regionZone: string

The region zone of the datacenter.

secureBundleUrl: string

The internal URL for the secure bundle.

status: string

The status of the datacenter (might be an empty string)

The tier of the datacenter.