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

Subnetwork

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

Represents a subnet that was created or discovered by a private access management service.

interface Subnetwork {
ipCidrRange?: string;
name?: string;
network?: string;
outsideAllocation?: boolean;
region?: string;
secondaryIpRanges?: SecondaryIpRange[];
}

§Properties

§
ipCidrRange?: string
[src]

Subnetwork CIDR range in 10.x.x.x/y format.

§
name?: string
[src]
§
network?: string
[src]

In the Shared VPC host project, the VPC network that's peered with the consumer network. For example: projects/1234321/global/networks/host-network

§
outsideAllocation?: boolean
[src]

This is a discovered subnet that is not within the current consumer allocated ranges.

§
region?: string
[src]

GCP region where the subnetwork is located.

§
secondaryIpRanges?: SecondaryIpRange[]
[src]

List of secondary IP ranges in this subnetwork.