interface Endpoint {
    id: string;
    ips: string[];
    port: number;
    privateNetwork?: Redis.v1.PrivateNetwork;
    publicNetwork?: PublicNetwork;
}

Properties

id: string

UUID of the endpoint.

ips: string[]

List of IPv4 addresses of the endpoint.

port: number

TCP port of the endpoint.

privateNetwork?: Redis.v1.PrivateNetwork

Private Network details.

One-of ('details'): at most one of 'privateNetwork', 'publicNetwork' could be set.

publicNetwork?: PublicNetwork

Public network details.

One-of ('details'): at most one of 'privateNetwork', 'publicNetwork' could be set.