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

DbServerProperties

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

Various properties and settings associated with Exadata database server.

interface DbServerProperties {
readonly dbNodeIds?: string[];
dbNodeStorageSizeGb?: number;
maxDbNodeStorageSizeGb?: number;
maxMemorySizeGb?: number;
maxOcpuCount?: number;
memorySizeGb?: number;
readonly ocid?: string;
ocpuCount?: number;
readonly state?:
| "STATE_UNSPECIFIED"
| "CREATING"
| "AVAILABLE"
| "UNAVAILABLE"
| "DELETING"
| "DELETED";
vmCount?: number;
}

§Properties

§
readonly dbNodeIds?: string[]
[src]

Output only. OCID of database nodes associated with the database server.

§
dbNodeStorageSizeGb?: number
[src]

Optional. Local storage per VM.

§
maxDbNodeStorageSizeGb?: number
[src]

Optional. Maximum local storage per VM.

§
maxMemorySizeGb?: number
[src]

Optional. Maximum memory allocated in GBs.

§
maxOcpuCount?: number
[src]

Optional. Maximum OCPU count per database.

§
memorySizeGb?: number
[src]

Optional. Memory allocated in GBs.

§
readonly ocid?: string
[src]

Output only. OCID of database server.

§
ocpuCount?: number
[src]

Optional. OCPU count per database.

§
readonly state?: "STATE_UNSPECIFIED" | "CREATING" | "AVAILABLE" | "UNAVAILABLE" | "DELETING" | "DELETED"
[src]

Output only. State of the database server.

§
vmCount?: number
[src]

Optional. Vm count per database.