interface Instance {
    createdAt?: Date;
    endpoints: Mongodb.v1alpha1.Endpoint[];
    id: string;
    name: string;
    nodeNumber: number;
    nodeType: string;
    projectId: string;
    region: Region;
    settings: Mongodb.v1alpha1.InstanceSetting[];
    status: Mongodb.v1alpha1.InstanceStatus;
    tags: string[];
    version: string;
    volume?: Mongodb.v1alpha1.Volume;
}

Properties

createdAt?: Date

Creation date (must follow the ISO 8601 format).

List of Database Instance endpoints.

id: string

UUID of the Database Instance.

name: string

Name of the Database Instance.

nodeNumber: number

Number of node in the Database Instance.

nodeType: string

Node type of the Database Instance.

projectId: string

Project ID the Database Instance belongs to.

region: Region

Region the Database Instance is in.

Advanced settings of the Database Instance.

Status of the Database Instance.

tags: string[]

List of tags applied to the Database Instance.

version: string

MongoDB® engine version of the Database Instance.

Volumes of the Database Instance.