Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Node

import type { Node } from "https://googleapis.deno.dev/v1/alloydb:v1.ts";

Details of a single node in the instance. Nodes in an AlloyDB instance are ephemereal, they can change during update, failover, autohealing and resize operations.

interface Node {
id?: string;
ip?: string;
state?: string;
zoneId?: string;
}

§Properties

§
id?: string
[src]

The identifier of the VM e.g. "test-read-0601-407e52be-ms3l".

§
ip?: string
[src]

The private IP address of the VM e.g. "10.57.0.34".

§
state?: string
[src]

Determined by state of the compute VM and postgres-service health. Compute VM state can have values listed in https://cloud.google.com/compute/docs/instances/instance-life-cycle and postgres-service health can have values: HEALTHY and UNHEALTHY.

§
zoneId?: string
[src]

The Compute Engine zone of the VM e.g. "us-central1-b".