import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to access information about existing DB Servers. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.oracle.getDbServers({ * resourceGroupName: "existing", * cloudExadataInfrastructureName: "existing", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Oracle.Database` - 2025-09-01 */ export declare function getDbServers(args: GetDbServersArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbServers. */ export interface GetDbServersArgs { /** * The name of the Cloud Exadata Infrastructure. */ cloudExadataInfrastructureName: string; /** * The name of the Resource Group where the DB Server exists. */ resourceGroupName: string; } /** * A collection of values returned by getDbServers. */ export interface GetDbServersResult { readonly cloudExadataInfrastructureName: string; /** * A `dbServers` block as defined below. */ readonly dbServers: outputs.oracle.GetDbServersDbServer[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly resourceGroupName: string; } /** * Use this data source to access information about existing DB Servers. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.oracle.getDbServers({ * resourceGroupName: "existing", * cloudExadataInfrastructureName: "existing", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Oracle.Database` - 2025-09-01 */ export declare function getDbServersOutput(args: GetDbServersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbServers. */ export interface GetDbServersOutputArgs { /** * The name of the Cloud Exadata Infrastructure. */ cloudExadataInfrastructureName: pulumi.Input; /** * The name of the Resource Group where the DB Server exists. */ resourceGroupName: pulumi.Input; }