import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Lists the database nodes for the specified Cloud VM Cluster. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * export = async () => { * const example = await azure.oracle.getDbNodes({ * cloudVmClusterId: "existing", * }); * return { * example: example, * }; * } * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Oracle.Database` - 2025-09-01 */ export declare function getDbNodes(args: GetDbNodesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbNodes. */ export interface GetDbNodesArgs { /** * The id of the Cloud VM cluster. */ cloudVmClusterId: string; } /** * A collection of values returned by getDbNodes. */ export interface GetDbNodesResult { readonly cloudVmClusterId: string; /** * A `dbNodes` block as defined below. */ readonly dbNodes: outputs.oracle.GetDbNodesDbNode[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * Lists the database nodes for the specified Cloud VM Cluster. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * export = async () => { * const example = await azure.oracle.getDbNodes({ * cloudVmClusterId: "existing", * }); * return { * example: example, * }; * } * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Oracle.Database` - 2025-09-01 */ export declare function getDbNodesOutput(args: GetDbNodesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbNodes. */ export interface GetDbNodesOutputArgs { /** * The id of the Cloud VM cluster. */ cloudVmClusterId: pulumi.Input; }