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

PoolNodeConfig

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

Details of a single read pool node of a read pool.

interface PoolNodeConfig {
readonly dnsName?: string;
readonly dnsNames?: DnsNameMapping[];
readonly gceZone?: string;
readonly ipAddresses?: IpMapping[];
readonly name?: string;
readonly state?:
| "SQL_INSTANCE_STATE_UNSPECIFIED"
| "RUNNABLE"
| "SUSPENDED"
| "PENDING_DELETE"
| "PENDING_CREATE"
| "MAINTENANCE"
| "FAILED"
| "ONLINE_MAINTENANCE"
| "REPAIRING";
}

§Properties

§
readonly dnsName?: string
[src]

Output only. The DNS name of the read pool node.

§
readonly dnsNames?: DnsNameMapping[]
[src]

Output only. The list of DNS names used by this read pool node.

§
readonly gceZone?: string
[src]

Output only. The zone of the read pool node.

§
readonly ipAddresses?: IpMapping[]
[src]

Output only. Mappings containing IP addresses that can be used to connect to the read pool node.

§
readonly name?: string
[src]

Output only. The name of the read pool node, to be used for retrieving metrics and logs.

§
readonly state?: "SQL_INSTANCE_STATE_UNSPECIFIED" | "RUNNABLE" | "SUSPENDED" | "PENDING_DELETE" | "PENDING_CREATE" | "MAINTENANCE" | "FAILED" | "ONLINE_MAINTENANCE" | "REPAIRING"
[src]

Output only. The current state of the read pool node.