import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Db Home resource in Oracle Cloud Infrastructure Database service. * * Gets information about the specified Database Home. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDbHome = oci.database.getDbHome({ * dbHomeId: dbHomeId, * }); * ``` */ export declare function getDbHome(args: GetDbHomeArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbHome. */ export interface GetDbHomeArgs { /** * The Database Home [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ dbHomeId: string; } /** * A collection of values returned by getDbHome. */ export interface GetDbHomeResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * The database software image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) */ readonly databaseSoftwareImageId: string; readonly databases: outputs.Database.GetDbHomeDatabase[]; readonly dbHomeId: string; /** * The location of the Oracle Database Home. */ readonly dbHomeLocation: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DB system. */ readonly dbSystemId: string; /** * The Oracle Database version. */ readonly dbVersion: 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-provided name for the Database Home. The name does not need to be unique. */ readonly displayName: string; readonly enableDatabaseDelete: boolean; /** * 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; }; /** * Represents database home will be managed by oracle or customer */ readonly homeType: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Home. */ readonly id: string; readonly isDesupportedVersion: boolean; /** * Indicates whether unified autiding is enabled or not. */ readonly isUnifiedAuditingEnabled: boolean; /** * The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations. */ readonly kmsKeyId: string; readonly kmsKeyVersionId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last patch history. This value is updated as soon as a patch operation is started. */ readonly lastPatchHistoryEntryId: string; /** * Additional information about the current lifecycle state. */ readonly lifecycleDetails: string; readonly source: string; /** * The current state of the Database Home. */ 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 Home was created. */ readonly timeCreated: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster. */ readonly vmClusterId: string; } /** * This data source provides details about a specific Db Home resource in Oracle Cloud Infrastructure Database service. * * Gets information about the specified Database Home. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDbHome = oci.database.getDbHome({ * dbHomeId: dbHomeId, * }); * ``` */ export declare function getDbHomeOutput(args: GetDbHomeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbHome. */ export interface GetDbHomeOutputArgs { /** * The Database Home [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ dbHomeId: pulumi.Input; } //# sourceMappingURL=getDbHome.d.ts.map