interface Endpoint {
    dnsRecords: string[];
    id: string;
    ips: string[];
    port: number;
    privateNetwork?: Mongodb.v1alpha1.EndpointPrivateNetworkDetails;
    public?: EndpointPublicDetails;
}

Properties

dnsRecords: string[]

List of DNS records of the endpoint.

id: string

UUID of the endpoint.

ips: string[]

List of IPv4 addresses of the endpoint.

port: number

TCP port of the endpoint.

Private Network endpoint details.

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

Public endpoint details.

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