import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to access information about an existing Recovery Services Vault. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const vault = azure.recoveryservices.getVault({ * name: "tfex-recovery_vault", * resourceGroupName: "tfex-resource_group", * }); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.RecoveryServices` - 2024-01-01 */ export declare function getVault(args: GetVaultArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVault. */ export interface GetVaultArgs { /** * Specifies the name of the Recovery Services Vault. */ name: string; /** * The name of the resource group in which the Recovery Services Vault resides. */ resourceGroupName: string; } /** * A collection of values returned by getVault. */ export interface GetVaultResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * (Optional) An `identity` block as defined below. */ readonly identities: outputs.recoveryservices.GetVaultIdentity[]; /** * The Azure location where the resource resides. */ readonly location: string; readonly name: string; readonly resourceGroupName: string; /** * The vault's current SKU. */ readonly sku: string; /** * A mapping of tags assigned to the resource. */ readonly tags: { [key: string]: string; }; } /** * Use this data source to access information about an existing Recovery Services Vault. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const vault = azure.recoveryservices.getVault({ * name: "tfex-recovery_vault", * resourceGroupName: "tfex-resource_group", * }); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.RecoveryServices` - 2024-01-01 */ export declare function getVaultOutput(args: GetVaultOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVault. */ export interface GetVaultOutputArgs { /** * Specifies the name of the Recovery Services Vault. */ name: pulumi.Input; /** * The name of the resource group in which the Recovery Services Vault resides. */ resourceGroupName: pulumi.Input; }