import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific External Container Database resource in Oracle Cloud Infrastructure Database service. * * Gets information about the specified external container database. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalContainerDatabase = oci.database.getExternalContainerDatabase({ * externalContainerDatabaseId: testExternalContainerDatabaseOciDatabaseExternalContainerDatabase.id, * }); * ``` */ export declare function getExternalContainerDatabase(args: GetExternalContainerDatabaseArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getExternalContainerDatabase. */ export interface GetExternalContainerDatabaseArgs { /** * The ExternalContainerDatabase [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ externalContainerDatabaseId: string; } /** * A collection of values returned by getExternalContainerDatabase. */ export interface GetExternalContainerDatabaseResult { /** * 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.GetExternalContainerDatabaseDatabaseManagementConfig[]; /** * 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 externalContainerDatabaseId: 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 Stack Monitoring for the external database. */ readonly stackMonitoringConfigs: outputs.Database.GetExternalContainerDatabaseStackMonitoringConfig[]; /** * 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 Container Database resource in Oracle Cloud Infrastructure Database service. * * Gets information about the specified external container database. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalContainerDatabase = oci.database.getExternalContainerDatabase({ * externalContainerDatabaseId: testExternalContainerDatabaseOciDatabaseExternalContainerDatabase.id, * }); * ``` */ export declare function getExternalContainerDatabaseOutput(args: GetExternalContainerDatabaseOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getExternalContainerDatabase. */ export interface GetExternalContainerDatabaseOutputArgs { /** * The ExternalContainerDatabase [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ externalContainerDatabaseId: pulumi.Input; } //# sourceMappingURL=getExternalContainerDatabase.d.ts.map