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

OdbSubnet

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

Represents OdbSubnet resource.

interface OdbSubnet {
cidrRange?: string;
readonly createTime?: Date;
labels?: {
[key: string]: string;
}
;
name?: string;
purpose?: "PURPOSE_UNSPECIFIED" | "CLIENT_SUBNET" | "BACKUP_SUBNET";
readonly state?:
| "STATE_UNSPECIFIED"
| "PROVISIONING"
| "AVAILABLE"
| "TERMINATING"
| "FAILED";
}

§Properties

§
cidrRange?: string
[src]

Required. The CIDR range of the subnet.

§
readonly createTime?: Date
[src]

Output only. The date and time that the OdbNetwork was created.

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

Optional. Labels or tags associated with the resource.

§
name?: string
[src]

Identifier. The name of the OdbSubnet resource in the following format: projects/{project}/locations/{location}/odbNetworks/{odb_network}/odbSubnets/{odb_subnet}

§
purpose?: "PURPOSE_UNSPECIFIED" | "CLIENT_SUBNET" | "BACKUP_SUBNET"
[src]

Required. Purpose of the subnet.

§
readonly state?: "STATE_UNSPECIFIED" | "PROVISIONING" | "AVAILABLE" | "TERMINATING" | "FAILED"
[src]

Output only. State of the ODB Subnet.