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

ExternalAddress

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

Represents an allocated external IP address and its corresponding internal IP address in a private cloud.

interface ExternalAddress {
readonly createTime?: Date;
description?: string;
readonly externalIp?: string;
internalIp?: string;
readonly name?: string;
readonly state?:
| "STATE_UNSPECIFIED"
| "ACTIVE"
| "CREATING"
| "UPDATING"
| "DELETING";
readonly uid?: string;
readonly updateTime?: Date;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. Creation time of this resource.

§
description?: string
[src]

User-provided description for this resource.

§
readonly externalIp?: string
[src]

Output only. The external IP address of a workload VM.

§
internalIp?: string
[src]

The internal IP address of a workload VM.

§
readonly name?: string
[src]

Output only. The resource name of this external IP address. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: projects/my-project/locations/us-central1-a/privateClouds/my-cloud/externalAddresses/my-address

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

Output only. The state of the resource.

§
readonly uid?: string
[src]

Output only. System-generated unique identifier for the resource.

§
readonly updateTime?: Date
[src]

Output only. Last update time of this resource.