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

SapDiscoveryComponentDatabaseProperties

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

A set of properties describing an SAP Database layer.

interface SapDiscoveryComponentDatabaseProperties {
databaseSid?: string;
databaseType?:
| "DATABASE_TYPE_UNSPECIFIED"
| "HANA"
| "MAX_DB"
| "DB2";
databaseVersion?: string;
instanceNumber?: string;
primaryInstanceUri?: string;
sharedNfsUri?: string;
}

§Properties

§
databaseSid?: string
[src]

Optional. SID of the system database.

§
databaseType?: "DATABASE_TYPE_UNSPECIFIED" | "HANA" | "MAX_DB" | "DB2"
[src]

Required. Type of the database. HANA, DB2, etc.

§
databaseVersion?: string
[src]

Optional. The version of the database software running in the system.

§
instanceNumber?: string
[src]

Optional. Instance number of the SAP instance.

§
primaryInstanceUri?: string
[src]

Required. URI of the recognized primary instance of the database.

§
sharedNfsUri?: string
[src]

Optional. URI of the recognized shared NFS of the database. May be empty if the database has only a single node.