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

Subnet

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

Subnet in a private cloud. Either management subnets (such as vMotion) that are read-only, or userDefined, which can also be updated.

interface Subnet {
gatewayIp?: string;
ipCidrRange?: string;
readonly name?: string;
readonly state?:
| "STATE_UNSPECIFIED"
| "ACTIVE"
| "CREATING"
| "UPDATING"
| "DELETING"
| "RECONCILING"
| "FAILED";
readonly type?: string;
readonly vlanId?: number;
}

§Properties

§
gatewayIp?: string
[src]

The IP address of the gateway of this subnet. Must fall within the IP prefix defined above.

§
ipCidrRange?: string
[src]

The IP address range of the subnet in CIDR format '10.0.0.0/24'.

§
readonly name?: string
[src]

Output only. The resource name of this subnet. 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/subnets/my-subnet

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

Output only. The state of the resource.

§
readonly type?: string
[src]

Output only. The type of the subnet. For example "management" or "userDefined".

§
readonly vlanId?: number
[src]

Output only. VLAN ID of the VLAN on which the subnet is configured