import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific External Non Container Database resource in Oracle Cloud Infrastructure Database service. * * Gets information about a specific external non-container database. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalNonContainerDatabase = oci.database.getExternalNonContainerDatabase({ * externalNonContainerDatabaseId: testExternalNonContainerDatabaseOciDatabaseExternalNonContainerDatabase.id, * }); * ``` */ export declare function getExternalNonContainerDatabase(args: GetExternalNonContainerDatabaseArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getExternalNonContainerDatabase. */ export interface GetExternalNonContainerDatabaseArgs { /** * The external non-container database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ externalNonContainerDatabaseId: string; } /** * A collection of values returned by getExternalNonContainerDatabase. */ export interface GetExternalNonContainerDatabaseResult { /** * The character set of the external database. */ readonly characterSet: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * The Oracle Database configuration */ readonly databaseConfiguration: string; /** * The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE. */ readonly databaseEdition: string; /** * The configuration of the Database Management service. */ readonly databaseManagementConfigs: outputs.Database.GetExternalNonContainerDatabaseDatabaseManagementConfig[]; /** * The Oracle Database version. */ readonly databaseVersion: string; /** * The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud. */ readonly dbId: string; /** * The database packs licensed for the external Oracle Database. */ readonly dbPacks: string; /** * The `DB_UNIQUE_NAME` of the external database. */ readonly dbUniqueName: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). */ readonly definedTags: { [key: string]: string; }; /** * The user-friendly name for the external database. The name does not have to be unique. */ readonly displayName: string; readonly externalNonContainerDatabaseId: string; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure external database resource. */ readonly id: string; /** * Additional information about the current lifecycle state. */ readonly lifecycleDetails: string; /** * The national character of the external database. */ readonly ncharacterSet: string; /** * The configuration of Operations Insights for the external database */ readonly operationsInsightsConfigs: outputs.Database.GetExternalNonContainerDatabaseOperationsInsightsConfig[]; /** * The configuration of Stack Monitoring for the external database. */ readonly stackMonitoringConfigs: outputs.Database.GetExternalNonContainerDatabaseStackMonitoringConfig[]; /** * The current state of the Oracle Cloud Infrastructure external database resource. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). */ readonly systemTags: { [key: string]: string; }; /** * The date and time the database was created. */ readonly timeCreated: string; /** * The time zone of the external database. It is a time zone offset (a character type in the format '[+|-]TZH:TZM') or a time zone region name, depending on how the time zone value was specified when the database was created / last altered. */ readonly timeZone: string; } /** * This data source provides details about a specific External Non Container Database resource in Oracle Cloud Infrastructure Database service. * * Gets information about a specific external non-container database. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalNonContainerDatabase = oci.database.getExternalNonContainerDatabase({ * externalNonContainerDatabaseId: testExternalNonContainerDatabaseOciDatabaseExternalNonContainerDatabase.id, * }); * ``` */ export declare function getExternalNonContainerDatabaseOutput(args: GetExternalNonContainerDatabaseOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getExternalNonContainerDatabase. */ export interface GetExternalNonContainerDatabaseOutputArgs { /** * The external non-container database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ externalNonContainerDatabaseId: pulumi.Input; } //# sourceMappingURL=getExternalNonContainerDatabase.d.ts.map