import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Volume Quota Rule. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.netapp.getVolumeQuotaRule({ * name: "exampleQuotaRule", * volumeId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.NetApp/netAppAccounts/account1/capacityPools/pool1/volumes/vol1", * }); * 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 getVolumeQuotaRule(args: GetVolumeQuotaRuleArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVolumeQuotaRule. */ export interface GetVolumeQuotaRuleArgs { /** * The name of this Volume Quota Rule. */ name: string; /** * The NetApp volume ID where the Volume Quota Rule is assigned to. */ volumeId: string; } /** * A collection of values returned by getVolumeQuotaRule. */ export interface GetVolumeQuotaRuleResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The Azure Region where the Volume Quota Rule exists. */ readonly location: string; readonly name: string; /** * The quota size in kibibytes. */ readonly quotaSizeInKib: number; /** * The quota Target. */ readonly quotaTarget: string; /** * The quota type. */ readonly quotaType: string; readonly volumeId: string; } /** * Use this data source to access information about an existing Volume Quota Rule. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.netapp.getVolumeQuotaRule({ * name: "exampleQuotaRule", * volumeId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.NetApp/netAppAccounts/account1/capacityPools/pool1/volumes/vol1", * }); * 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 getVolumeQuotaRuleOutput(args: GetVolumeQuotaRuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVolumeQuotaRule. */ export interface GetVolumeQuotaRuleOutputArgs { /** * The name of this Volume Quota Rule. */ name: pulumi.Input; /** * The NetApp volume ID where the Volume Quota Rule is assigned to. */ volumeId: pulumi.Input; }