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

CustomRange

import type { CustomRange } from "https://googleapis.deno.dev/v1/cloudnumberregistry:v1alpha.ts";

Message describing CustomRange object

interface CustomRange {
attributes?: Attribute[];
description?: string;
ipv4CidrRange?: string;
ipv6CidrRange?: string;
labels?: {
[key: string]: string;
}
;
name?: string;
parentRange?: string;
realm?: string;
readonly registryBook?: string;
}

§Properties

§
attributes?: Attribute[]
[src]

Optional. The attributes of the CustomRange.

§
description?: string
[src]

Optional. Description of the CustomRange.

§
ipv4CidrRange?: string
[src]

Optional. The IPv4 CIDR range of the CustomRange.

§
ipv6CidrRange?: string
[src]

Optional. The IPv6 CIDR range of the CustomRange.

§
labels?: {
[key: string]: string;
}
[src]

Optional. Labels as key value pairs

§
name?: string
[src]

Required. Identifier. name of resource

§
parentRange?: string
[src]

Optional. The parent range of the CustomRange. Do not allow setting parent range if realm is specified. Format must follow this pattern: projects/{project}/locations/{location}/customRanges/{custom_range}

§
realm?: string
[src]

Optional. The realm of the CustomRange. The realm must be in the same project as the custom range. Do not allow setting realm if parent range is specified, since the realm should be inherited from the parent range. Format must follow this pattern: projects/{project}/locations/{location}/realms/{realm}

§
readonly registryBook?: string
[src]

Output only. The registry book of the CustomRange. This field is inherited from the realm or parent range depending on which one is specified.