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

VpcSubNetwork

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

Sub-segment ranges inside of a VPC Network.

interface VpcSubNetwork {
network?: string;
vpcIpSubnetworks?: string[];
}

§Properties

§
network?: string
[src]

Required. Network name. If the network is not part of the organization, the compute.network.get permission must be granted to the caller. Format: //compute.googleapis.com/projects/{PROJECT_ID}/global/networks/{NETWORK_NAME} Example: //compute.googleapis.com/projects/my-project/global/networks/network-1

§
vpcIpSubnetworks?: string[]
[src]

CIDR block IP subnetwork specification. The IP address must be an IPv4 address and can be a public or private IP address. Note that for a CIDR IP address block, the specified IP address portion must be properly truncated (i.e. all the host bits must be zero) or the input is considered malformed. For example, "192.0.2.0/24" is accepted but "192.0.2.1/24" is not. If empty, all IP addresses are allowed.