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

InstanceInfo

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

For display only. Metadata associated with a Compute Engine instance.

interface InstanceInfo {
displayName?: string;
externalIp?: string;
interface?: string;
internalIp?: string;
networkTags?: string[];
networkUri?: string;
pscNetworkAttachmentUri?: string;
running?: boolean;
serviceAccount?: string;
status?: "STATUS_UNSPECIFIED" | "RUNNING" | "NOT_RUNNING";
uri?: string;
}

§Properties

§
displayName?: string
[src]

Name of a Compute Engine instance.

§
externalIp?: string
[src]

External IP address of the network interface.

§
interface?: string
[src]

Name of the network interface of a Compute Engine instance.

§
internalIp?: string
[src]

Internal IP address of the network interface.

§
networkTags?: string[]
[src]

Network tags configured on the instance.

§
networkUri?: string
[src]

URI of a Compute Engine network.

§
pscNetworkAttachmentUri?: string
[src]

URI of the PSC network attachment the NIC is attached to (if relevant).

§
running?: boolean
[src]

Indicates whether the Compute Engine instance is running. Deprecated: use the status field instead.

§
serviceAccount?: string
[src]

Service account authorized for the instance.

§
status?: "STATUS_UNSPECIFIED" | "RUNNING" | "NOT_RUNNING"
[src]

The status of the instance.

§
uri?: string
[src]

URI of a Compute Engine instance.