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

SearchRangeRequest

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

Request to search for an unused range within allocated ranges.

interface SearchRangeRequest {
ipPrefixLength?: number;
network?: string;
}

§Properties

§
ipPrefixLength?: number
[src]

Required. The prefix length of the IP range. Use usual CIDR range notation. For example, '30' to find unused x.x.x.x/30 CIDR range. Actual range will be determined using allocated range for the consumer peered network and returned in the result.

§
network?: string
[src]

Network name in the consumer project. This network must have been already peered with a shared VPC network using CreateConnection method. Must be in a form 'projects/{project}/global/networks/{network}'. {project} is a project number, as in '12345' {network} is network name.