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

Database

import type { Database } from "https://googleapis.deno.dev/v1/oracledatabase:v1.ts";
interface Database {
adminPassword?: string;
adminPasswordSecretVersion?: string;
characterSet?: string;
readonly createTime?: Date;
databaseId?: string;
dbHomeName?: string;
dbName?: string;
dbUniqueName?: string;
readonly gcpOracleZone?: string;
name?: string;
ncharacterSet?: string;
readonly ociUrl?: string;
readonly opsInsightsStatus?:
| "OPERATIONS_INSIGHTS_STATUS_UNSPECIFIED"
| "ENABLING"
| "ENABLED"
| "DISABLING"
| "NOT_ENABLED"
| "FAILED_ENABLING"
| "FAILED_DISABLING";
pluggableDatabaseId?: string;
pluggableDatabaseName?: string;
properties?: DatabaseProperties;
tdeWalletPassword?: string;
tdeWalletPasswordSecretVersion?: string;
}

§Properties

§
adminPassword?: string
[src]

Optional. The password for the default ADMIN user. Note: Only one of admin_password_secret_version or admin_password can be populated.

§
adminPasswordSecretVersion?: string
[src]

Optional. The resource name of a secret version in Secret Manager which contains the database admin user's password. Format: projects/{project}/secrets/{secret}/versions/{version}. Note: Only one of admin_password_secret_version or admin_password can be populated.

§
characterSet?: string
[src]

Optional. The character set for the database. The default is AL32UTF8.

§
readonly createTime?: Date
[src]

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

§
databaseId?: string
[src]

Optional. The database ID of the Database.

§
dbHomeName?: string
[src]

Optional. The name of the DbHome resource associated with the Database.

§
dbName?: string
[src]

Optional. The database name. The name must begin with an alphabetic character and can contain a maximum of eight alphanumeric characters. Special characters are not permitted.

§
dbUniqueName?: string
[src]

Optional. The DB_UNIQUE_NAME of the Oracle Database being backed up.

§
readonly gcpOracleZone?: string
[src]

Output only. The GCP Oracle zone where the Database is created.

§
name?: string
[src]

Identifier. The name of the Database resource in the following format: projects/{project}/locations/{region}/databases/{database}

§
ncharacterSet?: string
[src]

Optional. The national character set for the database. The default is AL16UTF16.

§
readonly ociUrl?: string
[src]

Output only. HTTPS link to OCI resources exposed to Customer via UI Interface.

§
readonly opsInsightsStatus?: "OPERATIONS_INSIGHTS_STATUS_UNSPECIFIED" | "ENABLING" | "ENABLED" | "DISABLING" | "NOT_ENABLED" | "FAILED_ENABLING" | "FAILED_DISABLING"
[src]

Output only. The Status of Operations Insights for this Database.

§
pluggableDatabaseId?: string
[src]

Optional. The ID of the pluggable database associated with the Database. The ID must be unique within the project and location.

§
pluggableDatabaseName?: string
[src]

Optional. The pluggable database associated with the Database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters.

§

Optional. The properties of the Database.

§
tdeWalletPassword?: string
[src]

Optional. The TDE wallet password for the database. Note: Only one of tde_wallet_password_secret_version or tde_wallet_password can be populated.

§
tdeWalletPasswordSecretVersion?: string
[src]

Optional. The resource name of a secret version in Secret Manager which contains the TDE wallet password for the database. Format: projects/{project}/secrets/{secret}/versions/{version}. Note: Only one of tde_wallet_password_secret_version or tde_wallet_password can be populated.