import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to access information about an existing Application Volume Group for Oracle application. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.netapp.getVolumeGroupOracle({ * name: "existing application volume group name", * resourceGroupName: "resource group name where the account and volume group belong to", * accountName: "existing account where the application volume group belong to", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.NetApp` - 2025-12-01 */ export declare function getVolumeGroupOracle(args: GetVolumeGroupOracleArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVolumeGroupOracle. */ export interface GetVolumeGroupOracleArgs { /** * Name of the account where the application volume group belong to. */ accountName: string; /** * The name of this Application Volume Group for Oracle application. */ name: string; /** * The name of the Resource Group where the Application Volume Group exists. */ resourceGroupName: string; } /** * A collection of values returned by getVolumeGroupOracle. */ export interface GetVolumeGroupOracleResult { readonly accountName: string; /** * The application identifier. */ readonly applicationIdentifier: string; /** * Volume group description. */ readonly groupDescription: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The Azure Region where the Application Volume Group exists. */ readonly location: string; /** * The name of this volume. */ readonly name: string; readonly resourceGroupName: string; /** * A `volume` block as defined below. */ readonly volumes: outputs.netapp.GetVolumeGroupOracleVolume[]; } /** * Use this data source to access information about an existing Application Volume Group for Oracle application. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.netapp.getVolumeGroupOracle({ * name: "existing application volume group name", * resourceGroupName: "resource group name where the account and volume group belong to", * accountName: "existing account where the application volume group belong to", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.NetApp` - 2025-12-01 */ export declare function getVolumeGroupOracleOutput(args: GetVolumeGroupOracleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVolumeGroupOracle. */ export interface GetVolumeGroupOracleOutputArgs { /** * Name of the account where the application volume group belong to. */ accountName: pulumi.Input; /** * The name of this Application Volume Group for Oracle application. */ name: pulumi.Input; /** * The name of the Resource Group where the Application Volume Group exists. */ resourceGroupName: pulumi.Input; }