interface Cluster {
    aclRules: Redis.v1.ACLRule[];
    clusterSettings: ClusterSetting[];
    clusterSize: number;
    createdAt?: Date;
    endpoints: Redis.v1.Endpoint[];
    id: string;
    name: string;
    nodeType: string;
    projectId: string;
    status: Redis.v1.ClusterStatus;
    tags: string[];
    tlsEnabled: boolean;
    updatedAt?: Date;
    upgradableVersions: string[];
    userName: string;
    version: string;
    zone: Zone;
}

Properties

aclRules: Redis.v1.ACLRule[]

List of ACL rules.

clusterSettings: ClusterSetting[]

List of Database Instance settings.

clusterSize: number

Number of nodes of the Database Instance cluster.

createdAt?: Date

Creation date (Format ISO 8601).

endpoints: Redis.v1.Endpoint[]

List of Database Instance endpoints.

id: string

UUID of the Database Instance.

name: string

Name of the Database Instance.

nodeType: string

Node type of the Database Instance.

projectId: string

Project ID the Database Instance belongs to.

Status of the Database Instance.

tags: string[]

List of tags applied to the Database Instance.

tlsEnabled: boolean

Defines whether or not TLS is enabled.

updatedAt?: Date

Update date (Format ISO 8601).

upgradableVersions: string[]

List of engine versions the Database Instance can upgrade to.

userName: string

Name of the user associated to the cluster.

version: string

Redis™ engine version of the Database Instance.

zone: Zone

Zone of the Database Instance.