import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Db Homes in Oracle Cloud Infrastructure Database service. * * Lists the Database Homes in the specified DB system and compartment. A Database Home is a directory where Oracle Database software is installed. */ export declare function getDbHomes(args: GetDbHomesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbHomes. */ export interface GetDbHomesArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup. Specify a backupId to list only the DB systems or DB homes that support creating a database using this backup in this compartment. */ backupId?: string; /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ compartmentId: string; /** * The DB system [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). If provided, filters the results to the set of database versions which are supported for the DB system. */ dbSystemId?: string; /** * A filter to return only DB Homes that match the specified dbVersion. */ dbVersion?: string; /** * A filter to return only resources that match the entire display name given. The match is not case sensitive. */ displayName?: string; filters?: inputs.Database.GetDbHomesFilter[]; /** * A filter to return only resources that match the given lifecycle state exactly. */ state?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster. */ vmClusterId?: string; } /** * A collection of values returned by getDbHomes. */ export interface GetDbHomesResult { readonly backupId?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * The list of db_homes. */ readonly dbHomes: outputs.Database.GetDbHomesDbHome[]; /** * 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; /** * The user-provided name for the Database Home. The name does not need to be unique. */ readonly displayName?: string; readonly filters?: outputs.Database.GetDbHomesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the Database Home. */ readonly state?: 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 the list of Db Homes in Oracle Cloud Infrastructure Database service. * * Lists the Database Homes in the specified DB system and compartment. A Database Home is a directory where Oracle Database software is installed. */ export declare function getDbHomesOutput(args: GetDbHomesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbHomes. */ export interface GetDbHomesOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup. Specify a backupId to list only the DB systems or DB homes that support creating a database using this backup in this compartment. */ backupId?: pulumi.Input; /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ compartmentId: pulumi.Input; /** * The DB system [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). If provided, filters the results to the set of database versions which are supported for the DB system. */ dbSystemId?: pulumi.Input; /** * A filter to return only DB Homes that match the specified dbVersion. */ dbVersion?: pulumi.Input; /** * A filter to return only resources that match the entire display name given. The match is not case sensitive. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources that match the given lifecycle state exactly. */ state?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster. */ vmClusterId?: pulumi.Input; } //# sourceMappingURL=getDbHomes.d.ts.map