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 External Db Homes in Oracle Cloud Infrastructure Database Management service. * * Lists the DB homes in the specified external DB system. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalDbHomes = oci.databasemanagement.getExternalDbHomes({ * compartmentId: compartmentId, * displayName: externalDbHomeDisplayName, * externalDbSystemId: testExternalDbSystem.id, * }); * ``` */ export declare function getExternalDbHomes(args?: GetExternalDbHomesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getExternalDbHomes. */ export interface GetExternalDbHomesArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId?: string; /** * A filter to only return the resources that match the entire display name. */ displayName?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external DB system. */ externalDbSystemId?: string; filters?: inputs.DatabaseManagement.GetExternalDbHomesFilter[]; } /** * A collection of values returned by getExternalDbHomes. */ export interface GetExternalDbHomesResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId?: string; /** * The user-friendly name for the external DB home. The name does not have to be unique. */ readonly displayName?: string; /** * The list of external_db_home_collection. */ readonly externalDbHomeCollections: outputs.DatabaseManagement.GetExternalDbHomesExternalDbHomeCollection[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external DB system that the DB home is a part of. */ readonly externalDbSystemId?: string; readonly filters?: outputs.DatabaseManagement.GetExternalDbHomesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of External Db Homes in Oracle Cloud Infrastructure Database Management service. * * Lists the DB homes in the specified external DB system. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalDbHomes = oci.databasemanagement.getExternalDbHomes({ * compartmentId: compartmentId, * displayName: externalDbHomeDisplayName, * externalDbSystemId: testExternalDbSystem.id, * }); * ``` */ export declare function getExternalDbHomesOutput(args?: GetExternalDbHomesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getExternalDbHomes. */ export interface GetExternalDbHomesOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId?: pulumi.Input; /** * A filter to only return the resources that match the entire display name. */ displayName?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external DB system. */ externalDbSystemId?: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getExternalDbHomes.d.ts.map