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 System Discoveries in Oracle Cloud Infrastructure Database Management service. * * Lists the external DB system discovery resources in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalDbSystemDiscoveries = oci.databasemanagement.getExternalDbSystemDiscoveries({ * compartmentId: compartmentId, * displayName: externalDbSystemDiscoveryDisplayName, * }); * ``` */ export declare function getExternalDbSystemDiscoveries(args: GetExternalDbSystemDiscoveriesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getExternalDbSystemDiscoveries. */ export interface GetExternalDbSystemDiscoveriesArgs { /** * 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; filters?: inputs.DatabaseManagement.GetExternalDbSystemDiscoveriesFilter[]; } /** * A collection of values returned by getExternalDbSystemDiscoveries. */ export interface GetExternalDbSystemDiscoveriesResult { /** * 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 DB system. The name does not have to be unique. */ readonly displayName?: string; /** * The list of external_db_system_discovery_collection. */ readonly externalDbSystemDiscoveryCollections: outputs.DatabaseManagement.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollection[]; readonly filters?: outputs.DatabaseManagement.GetExternalDbSystemDiscoveriesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of External Db System Discoveries in Oracle Cloud Infrastructure Database Management service. * * Lists the external DB system discovery resources in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalDbSystemDiscoveries = oci.databasemanagement.getExternalDbSystemDiscoveries({ * compartmentId: compartmentId, * displayName: externalDbSystemDiscoveryDisplayName, * }); * ``` */ export declare function getExternalDbSystemDiscoveriesOutput(args: GetExternalDbSystemDiscoveriesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getExternalDbSystemDiscoveries. */ export interface GetExternalDbSystemDiscoveriesOutputArgs { /** * 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; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getExternalDbSystemDiscoveries.d.ts.map