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/memcache:v1.ts";
interface Node {
readonly host?: string;
readonly memcacheFullVersion?: string;
readonly memcacheVersion?: "MEMCACHE_VERSION_UNSPECIFIED" | "MEMCACHE_1_5" | "MEMCACHE_1_6_15";
readonly nodeId?: string;
parameters?: MemcacheParameters;
readonly port?: number;
readonly state?:
| "STATE_UNSPECIFIED"
| "CREATING"
| "READY"
| "DELETING"
| "UPDATING";
readonly zone?: string;
}

§Properties

§
readonly host?: string
[src]

Output only. Hostname or IP address of the Memcached node used by the clients to connect to the Memcached server on this node.

§
readonly memcacheFullVersion?: string
[src]

Output only. The full version of memcached server running on this node. e.g. - memcached-1.5.16

§
readonly memcacheVersion?: "MEMCACHE_VERSION_UNSPECIFIED" | "MEMCACHE_1_5" | "MEMCACHE_1_6_15"
[src]

Output only. Major version of memcached server running on this node, e.g. MEMCACHE_1_5

§
readonly nodeId?: string
[src]

Output only. Identifier of the Memcached node. The node id does not include project or location like the Memcached instance name.

§

User defined parameters currently applied to the node.

§
readonly port?: number
[src]

Output only. The port number of the Memcached server on this node.

§
readonly state?: "STATE_UNSPECIFIED" | "CREATING" | "READY" | "DELETING" | "UPDATING"
[src]

Output only. Current state of the Memcached node.

§
readonly zone?: string
[src]

Output only. Location (GCP Zone) for the Memcached node.