We recommend using Azure Native.
Azure v6.21.0 published on Friday, Mar 7, 2025 by Pulumi
azure.netapp.getVolume
Explore with Pulumi AI
Uses this data source to access information about an existing NetApp Volume.
NetApp Volume Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = azure.netapp.getVolume({
    resourceGroupName: "acctestRG",
    accountName: "acctestnetappaccount",
    poolName: "acctestnetapppool",
    name: "example-volume",
});
export const netappVolumeId = example.then(example => example.id);
import pulumi
import pulumi_azure as azure
example = azure.netapp.get_volume(resource_group_name="acctestRG",
    account_name="acctestnetappaccount",
    pool_name="acctestnetapppool",
    name="example-volume")
pulumi.export("netappVolumeId", example.id)
package main
import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/netapp"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := netapp.LookupVolume(ctx, &netapp.LookupVolumeArgs{
			ResourceGroupName: "acctestRG",
			AccountName:       "acctestnetappaccount",
			PoolName:          "acctestnetapppool",
			Name:              "example-volume",
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("netappVolumeId", example.Id)
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() => 
{
    var example = Azure.NetApp.GetVolume.Invoke(new()
    {
        ResourceGroupName = "acctestRG",
        AccountName = "acctestnetappaccount",
        PoolName = "acctestnetapppool",
        Name = "example-volume",
    });
    return new Dictionary<string, object?>
    {
        ["netappVolumeId"] = example.Apply(getVolumeResult => getVolumeResult.Id),
    };
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.netapp.NetappFunctions;
import com.pulumi.azure.netapp.inputs.GetVolumeArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var example = NetappFunctions.getVolume(GetVolumeArgs.builder()
            .resourceGroupName("acctestRG")
            .accountName("acctestnetappaccount")
            .poolName("acctestnetapppool")
            .name("example-volume")
            .build());
        ctx.export("netappVolumeId", example.applyValue(getVolumeResult -> getVolumeResult.id()));
    }
}
variables:
  example:
    fn::invoke:
      function: azure:netapp:getVolume
      arguments:
        resourceGroupName: acctestRG
        accountName: acctestnetappaccount
        poolName: acctestnetapppool
        name: example-volume
outputs:
  netappVolumeId: ${example.id}
Using getVolume
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getVolume(args: GetVolumeArgs, opts?: InvokeOptions): Promise<GetVolumeResult>
function getVolumeOutput(args: GetVolumeOutputArgs, opts?: InvokeOptions): Output<GetVolumeResult>def get_volume(account_name: Optional[str] = None,
               name: Optional[str] = None,
               pool_name: Optional[str] = None,
               resource_group_name: Optional[str] = None,
               security_style: Optional[str] = None,
               opts: Optional[InvokeOptions] = None) -> GetVolumeResult
def get_volume_output(account_name: Optional[pulumi.Input[str]] = None,
               name: Optional[pulumi.Input[str]] = None,
               pool_name: Optional[pulumi.Input[str]] = None,
               resource_group_name: Optional[pulumi.Input[str]] = None,
               security_style: Optional[pulumi.Input[str]] = None,
               opts: Optional[InvokeOptions] = None) -> Output[GetVolumeResult]func LookupVolume(ctx *Context, args *LookupVolumeArgs, opts ...InvokeOption) (*LookupVolumeResult, error)
func LookupVolumeOutput(ctx *Context, args *LookupVolumeOutputArgs, opts ...InvokeOption) LookupVolumeResultOutput> Note: This function is named LookupVolume in the Go SDK.
public static class GetVolume 
{
    public static Task<GetVolumeResult> InvokeAsync(GetVolumeArgs args, InvokeOptions? opts = null)
    public static Output<GetVolumeResult> Invoke(GetVolumeInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetVolumeResult> getVolume(GetVolumeArgs args, InvokeOptions options)
public static Output<GetVolumeResult> getVolume(GetVolumeArgs args, InvokeOptions options)
fn::invoke:
  function: azure:netapp/getVolume:getVolume
  arguments:
    # arguments dictionaryThe following arguments are supported:
- AccountName string
- The name of the NetApp account where the NetApp pool exists.
- Name string
- The name of the NetApp Volume.
- PoolName string
- The name of the NetApp pool where the NetApp volume exists.
- ResourceGroup stringName 
- The Name of the Resource Group where the NetApp Volume exists.
- SecurityStyle string
- Volume security style
- AccountName string
- The name of the NetApp account where the NetApp pool exists.
- Name string
- The name of the NetApp Volume.
- PoolName string
- The name of the NetApp pool where the NetApp volume exists.
- ResourceGroup stringName 
- The Name of the Resource Group where the NetApp Volume exists.
- SecurityStyle string
- Volume security style
- accountName String
- The name of the NetApp account where the NetApp pool exists.
- name String
- The name of the NetApp Volume.
- poolName String
- The name of the NetApp pool where the NetApp volume exists.
- resourceGroup StringName 
- The Name of the Resource Group where the NetApp Volume exists.
- securityStyle String
- Volume security style
- accountName string
- The name of the NetApp account where the NetApp pool exists.
- name string
- The name of the NetApp Volume.
- poolName string
- The name of the NetApp pool where the NetApp volume exists.
- resourceGroup stringName 
- The Name of the Resource Group where the NetApp Volume exists.
- securityStyle string
- Volume security style
- account_name str
- The name of the NetApp account where the NetApp pool exists.
- name str
- The name of the NetApp Volume.
- pool_name str
- The name of the NetApp pool where the NetApp volume exists.
- resource_group_ strname 
- The Name of the Resource Group where the NetApp Volume exists.
- security_style str
- Volume security style
- accountName String
- The name of the NetApp account where the NetApp pool exists.
- name String
- The name of the NetApp Volume.
- poolName String
- The name of the NetApp pool where the NetApp volume exists.
- resourceGroup StringName 
- The Name of the Resource Group where the NetApp Volume exists.
- securityStyle String
- Volume security style
getVolume Result
The following output properties are available:
- AccountName string
- DataProtection List<GetBackup Policies Volume Data Protection Backup Policy> 
- A data protecion backup policy block
- DataProtection List<GetReplications Volume Data Protection Replication> 
- Volume data protection replication block
- EncryptionKey stringSource 
- Id string
- The provider-assigned unique ID for this managed resource.
- KeyVault stringPrivate Endpoint Id 
- Location string
- The Azure Region where the NetApp Volume exists.
- MountIp List<string>Addresses 
- A list of IPv4 Addresses which should be used to mount the volume.
- Name string
- NetworkFeatures string
- Network features in use BasicorStandard.
- PoolName string
- Protocols List<string>
- A list of protocol types enabled on volume.
- ResourceGroup stringName 
- ServiceLevel string
- The service level of the file system.
- SmbAccess boolBased Enumeration Enabled 
- Limits enumeration of files and folders (that is, listing the contents) in SMB only to users with allowed access on the share.
- SmbNon boolBrowsable Enabled 
- Limits clients from browsing for an SMB share.
- StorageQuota intIn Gb 
- The maximum Storage Quota in Gigabytes allowed for a file system.
- SubnetId string
- The ID of a Subnet in which the NetApp Volume resides.
- VolumePath string
- The unique file path of the volume.
- Zone string
- The Availability Zone in which the Volume is located.
- SecurityStyle string
- Volume security style
- AccountName string
- DataProtection []GetBackup Policies Volume Data Protection Backup Policy 
- A data protecion backup policy block
- DataProtection []GetReplications Volume Data Protection Replication 
- Volume data protection replication block
- EncryptionKey stringSource 
- Id string
- The provider-assigned unique ID for this managed resource.
- KeyVault stringPrivate Endpoint Id 
- Location string
- The Azure Region where the NetApp Volume exists.
- MountIp []stringAddresses 
- A list of IPv4 Addresses which should be used to mount the volume.
- Name string
- NetworkFeatures string
- Network features in use BasicorStandard.
- PoolName string
- Protocols []string
- A list of protocol types enabled on volume.
- ResourceGroup stringName 
- ServiceLevel string
- The service level of the file system.
- SmbAccess boolBased Enumeration Enabled 
- Limits enumeration of files and folders (that is, listing the contents) in SMB only to users with allowed access on the share.
- SmbNon boolBrowsable Enabled 
- Limits clients from browsing for an SMB share.
- StorageQuota intIn Gb 
- The maximum Storage Quota in Gigabytes allowed for a file system.
- SubnetId string
- The ID of a Subnet in which the NetApp Volume resides.
- VolumePath string
- The unique file path of the volume.
- Zone string
- The Availability Zone in which the Volume is located.
- SecurityStyle string
- Volume security style
- accountName String
- dataProtection List<GetBackup Policies Volume Data Protection Backup Policy> 
- A data protecion backup policy block
- dataProtection List<GetReplications Volume Data Protection Replication> 
- Volume data protection replication block
- encryptionKey StringSource 
- id String
- The provider-assigned unique ID for this managed resource.
- keyVault StringPrivate Endpoint Id 
- location String
- The Azure Region where the NetApp Volume exists.
- mountIp List<String>Addresses 
- A list of IPv4 Addresses which should be used to mount the volume.
- name String
- networkFeatures String
- Network features in use BasicorStandard.
- poolName String
- protocols List<String>
- A list of protocol types enabled on volume.
- resourceGroup StringName 
- serviceLevel String
- The service level of the file system.
- smbAccess BooleanBased Enumeration Enabled 
- Limits enumeration of files and folders (that is, listing the contents) in SMB only to users with allowed access on the share.
- smbNon BooleanBrowsable Enabled 
- Limits clients from browsing for an SMB share.
- storageQuota IntegerIn Gb 
- The maximum Storage Quota in Gigabytes allowed for a file system.
- subnetId String
- The ID of a Subnet in which the NetApp Volume resides.
- volumePath String
- The unique file path of the volume.
- zone String
- The Availability Zone in which the Volume is located.
- securityStyle String
- Volume security style
- accountName string
- dataProtection GetBackup Policies Volume Data Protection Backup Policy[] 
- A data protecion backup policy block
- dataProtection GetReplications Volume Data Protection Replication[] 
- Volume data protection replication block
- encryptionKey stringSource 
- id string
- The provider-assigned unique ID for this managed resource.
- keyVault stringPrivate Endpoint Id 
- location string
- The Azure Region where the NetApp Volume exists.
- mountIp string[]Addresses 
- A list of IPv4 Addresses which should be used to mount the volume.
- name string
- networkFeatures string
- Network features in use BasicorStandard.
- poolName string
- protocols string[]
- A list of protocol types enabled on volume.
- resourceGroup stringName 
- serviceLevel string
- The service level of the file system.
- smbAccess booleanBased Enumeration Enabled 
- Limits enumeration of files and folders (that is, listing the contents) in SMB only to users with allowed access on the share.
- smbNon booleanBrowsable Enabled 
- Limits clients from browsing for an SMB share.
- storageQuota numberIn Gb 
- The maximum Storage Quota in Gigabytes allowed for a file system.
- subnetId string
- The ID of a Subnet in which the NetApp Volume resides.
- volumePath string
- The unique file path of the volume.
- zone string
- The Availability Zone in which the Volume is located.
- securityStyle string
- Volume security style
- account_name str
- data_protection_ Sequence[Getbackup_ policies Volume Data Protection Backup Policy] 
- A data protecion backup policy block
- data_protection_ Sequence[Getreplications Volume Data Protection Replication] 
- Volume data protection replication block
- encryption_key_ strsource 
- id str
- The provider-assigned unique ID for this managed resource.
- key_vault_ strprivate_ endpoint_ id 
- location str
- The Azure Region where the NetApp Volume exists.
- mount_ip_ Sequence[str]addresses 
- A list of IPv4 Addresses which should be used to mount the volume.
- name str
- network_features str
- Network features in use BasicorStandard.
- pool_name str
- protocols Sequence[str]
- A list of protocol types enabled on volume.
- resource_group_ strname 
- service_level str
- The service level of the file system.
- smb_access_ boolbased_ enumeration_ enabled 
- Limits enumeration of files and folders (that is, listing the contents) in SMB only to users with allowed access on the share.
- smb_non_ boolbrowsable_ enabled 
- Limits clients from browsing for an SMB share.
- storage_quota_ intin_ gb 
- The maximum Storage Quota in Gigabytes allowed for a file system.
- subnet_id str
- The ID of a Subnet in which the NetApp Volume resides.
- volume_path str
- The unique file path of the volume.
- zone str
- The Availability Zone in which the Volume is located.
- security_style str
- Volume security style
- accountName String
- dataProtection List<Property Map>Backup Policies 
- A data protecion backup policy block
- dataProtection List<Property Map>Replications 
- Volume data protection replication block
- encryptionKey StringSource 
- id String
- The provider-assigned unique ID for this managed resource.
- keyVault StringPrivate Endpoint Id 
- location String
- The Azure Region where the NetApp Volume exists.
- mountIp List<String>Addresses 
- A list of IPv4 Addresses which should be used to mount the volume.
- name String
- networkFeatures String
- Network features in use BasicorStandard.
- poolName String
- protocols List<String>
- A list of protocol types enabled on volume.
- resourceGroup StringName 
- serviceLevel String
- The service level of the file system.
- smbAccess BooleanBased Enumeration Enabled 
- Limits enumeration of files and folders (that is, listing the contents) in SMB only to users with allowed access on the share.
- smbNon BooleanBrowsable Enabled 
- Limits clients from browsing for an SMB share.
- storageQuota NumberIn Gb 
- The maximum Storage Quota in Gigabytes allowed for a file system.
- subnetId String
- The ID of a Subnet in which the NetApp Volume resides.
- volumePath String
- The unique file path of the volume.
- zone String
- The Availability Zone in which the Volume is located.
- securityStyle String
- Volume security style
Supporting Types
GetVolumeDataProtectionBackupPolicy     
- BackupPolicy stringId 
- The Resource ID of the backup policy.
- BackupVault stringId 
- The Resource ID of the backup backup vault.
- PolicyEnabled bool
- Backup policy is enabled or not.
- BackupPolicy stringId 
- The Resource ID of the backup policy.
- BackupVault stringId 
- The Resource ID of the backup backup vault.
- PolicyEnabled bool
- Backup policy is enabled or not.
- backupPolicy StringId 
- The Resource ID of the backup policy.
- backupVault StringId 
- The Resource ID of the backup backup vault.
- policyEnabled Boolean
- Backup policy is enabled or not.
- backupPolicy stringId 
- The Resource ID of the backup policy.
- backupVault stringId 
- The Resource ID of the backup backup vault.
- policyEnabled boolean
- Backup policy is enabled or not.
- backup_policy_ strid 
- The Resource ID of the backup policy.
- backup_vault_ strid 
- The Resource ID of the backup backup vault.
- policy_enabled bool
- Backup policy is enabled or not.
- backupPolicy StringId 
- The Resource ID of the backup policy.
- backupVault StringId 
- The Resource ID of the backup backup vault.
- policyEnabled Boolean
- Backup policy is enabled or not.
GetVolumeDataProtectionReplication    
- EndpointType string
- The endpoint type.
- RemoteVolume stringLocation 
- Location of the primary volume.
- RemoteVolume stringResource Id 
- Resource ID of the primary volume.
- ReplicationFrequency string
- Frequency of replication.
- EndpointType string
- The endpoint type.
- RemoteVolume stringLocation 
- Location of the primary volume.
- RemoteVolume stringResource Id 
- Resource ID of the primary volume.
- ReplicationFrequency string
- Frequency of replication.
- endpointType String
- The endpoint type.
- remoteVolume StringLocation 
- Location of the primary volume.
- remoteVolume StringResource Id 
- Resource ID of the primary volume.
- replicationFrequency String
- Frequency of replication.
- endpointType string
- The endpoint type.
- remoteVolume stringLocation 
- Location of the primary volume.
- remoteVolume stringResource Id 
- Resource ID of the primary volume.
- replicationFrequency string
- Frequency of replication.
- endpoint_type str
- The endpoint type.
- remote_volume_ strlocation 
- Location of the primary volume.
- remote_volume_ strresource_ id 
- Resource ID of the primary volume.
- replication_frequency str
- Frequency of replication.
- endpointType String
- The endpoint type.
- remoteVolume StringLocation 
- Location of the primary volume.
- remoteVolume StringResource Id 
- Resource ID of the primary volume.
- replicationFrequency String
- Frequency of replication.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the azurermTerraform Provider.