import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing NetApp Backup Vault. * * ## NetApp Backup Vault Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.netapp.getBackupVault({ * resourceGroupName: "example-resource-group", * accountName: "example-netappaccount", * name: "example-backupvault", * }); * export const backupVaultId = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.NetApp` - 2025-12-01 */ export declare function getBackupVault(args: GetBackupVaultArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBackupVault. */ export interface GetBackupVaultArgs { /** * The name of the NetApp Account in which the NetApp Vault exists. */ accountName: string; /** * The name of the NetApp Backup Vault. */ name: string; /** * The name of the resource group where the NetApp Backup Vault exists. */ resourceGroupName: string; } /** * A collection of values returned by getBackupVault. */ export interface GetBackupVaultResult { readonly accountName: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly location: string; readonly name: string; readonly resourceGroupName: string; readonly tags: { [key: string]: string; }; } /** * Use this data source to access information about an existing NetApp Backup Vault. * * ## NetApp Backup Vault Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.netapp.getBackupVault({ * resourceGroupName: "example-resource-group", * accountName: "example-netappaccount", * name: "example-backupvault", * }); * export const backupVaultId = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.NetApp` - 2025-12-01 */ export declare function getBackupVaultOutput(args: GetBackupVaultOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getBackupVault. */ export interface GetBackupVaultOutputArgs { /** * The name of the NetApp Account in which the NetApp Vault exists. */ accountName: pulumi.Input; /** * The name of the NetApp Backup Vault. */ name: pulumi.Input; /** * The name of the resource group where the NetApp Backup Vault exists. */ resourceGroupName: pulumi.Input; }