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

DbNodeProperties

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

Various properties and settings associated with Db node.

interface DbNodeProperties {
dbNodeStorageSizeGb?: number;
dbServerOcid?: string;
hostname?: string;
memorySizeGb?: number;
readonly ocid?: string;
ocpuCount?: number;
readonly state?:
| "STATE_UNSPECIFIED"
| "PROVISIONING"
| "AVAILABLE"
| "UPDATING"
| "STOPPING"
| "STOPPED"
| "STARTING"
| "TERMINATING"
| "TERMINATED"
| "FAILED";
totalCpuCoreCount?: number;
}

§Properties

§
dbNodeStorageSizeGb?: number
[src]

Optional. Local storage per database node.

§
dbServerOcid?: string
[src]

Optional. Database server OCID.

§
hostname?: string
[src]

Optional. DNS

§
memorySizeGb?: number
[src]

Memory allocated in GBs.

§
readonly ocid?: string
[src]

Output only. OCID of database node.

§
ocpuCount?: number
[src]

Optional. OCPU count per database node.

§
readonly state?: "STATE_UNSPECIFIED" | "PROVISIONING" | "AVAILABLE" | "UPDATING" | "STOPPING" | "STOPPED" | "STARTING" | "TERMINATING" | "TERMINATED" | "FAILED"
[src]

Output only. State of the database node.

§
totalCpuCoreCount?: number
[src]

Total CPU core count of the database node.