1. Packages
  2. Azure Classic
  3. API Docs
  4. netapp
  5. Snapshot

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
azure logo

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    Manages a NetApp Snapshot.

    NetApp Snapshot Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
    const exampleVirtualNetwork = new azure.network.VirtualNetwork("exampleVirtualNetwork", {
        addressSpaces: ["10.0.0.0/16"],
        location: exampleResourceGroup.location,
        resourceGroupName: exampleResourceGroup.name,
    });
    const exampleSubnet = new azure.network.Subnet("exampleSubnet", {
        resourceGroupName: exampleResourceGroup.name,
        virtualNetworkName: exampleVirtualNetwork.name,
        addressPrefixes: ["10.0.2.0/24"],
        delegations: [{
            name: "netapp",
            serviceDelegation: {
                name: "Microsoft.Netapp/volumes",
                actions: [
                    "Microsoft.Network/networkinterfaces/*",
                    "Microsoft.Network/virtualNetworks/subnets/join/action",
                ],
            },
        }],
    });
    const exampleAccount = new azure.netapp.Account("exampleAccount", {
        location: exampleResourceGroup.location,
        resourceGroupName: exampleResourceGroup.name,
    });
    const examplePool = new azure.netapp.Pool("examplePool", {
        accountName: exampleAccount.name,
        location: exampleResourceGroup.location,
        resourceGroupName: exampleResourceGroup.name,
        serviceLevel: "Premium",
        sizeInTb: "4",
    });
    const exampleVolume = new azure.netapp.Volume("exampleVolume", {
        location: exampleResourceGroup.location,
        resourceGroupName: exampleResourceGroup.name,
        accountName: exampleAccount.name,
        poolName: examplePool.name,
        volumePath: "my-unique-file-path",
        serviceLevel: "Premium",
        subnetId: azurerm_subnet.test.id,
        storageQuotaInGb: "100",
    });
    const exampleSnapshot = new azure.netapp.Snapshot("exampleSnapshot", {
        accountName: exampleAccount.name,
        poolName: examplePool.name,
        volumeName: exampleVolume.name,
        location: exampleResourceGroup.location,
        resourceGroupName: exampleResourceGroup.name,
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
    example_virtual_network = azure.network.VirtualNetwork("exampleVirtualNetwork",
        address_spaces=["10.0.0.0/16"],
        location=example_resource_group.location,
        resource_group_name=example_resource_group.name)
    example_subnet = azure.network.Subnet("exampleSubnet",
        resource_group_name=example_resource_group.name,
        virtual_network_name=example_virtual_network.name,
        address_prefixes=["10.0.2.0/24"],
        delegations=[azure.network.SubnetDelegationArgs(
            name="netapp",
            service_delegation=azure.network.SubnetDelegationServiceDelegationArgs(
                name="Microsoft.Netapp/volumes",
                actions=[
                    "Microsoft.Network/networkinterfaces/*",
                    "Microsoft.Network/virtualNetworks/subnets/join/action",
                ],
            ),
        )])
    example_account = azure.netapp.Account("exampleAccount",
        location=example_resource_group.location,
        resource_group_name=example_resource_group.name)
    example_pool = azure.netapp.Pool("examplePool",
        account_name=example_account.name,
        location=example_resource_group.location,
        resource_group_name=example_resource_group.name,
        service_level="Premium",
        size_in_tb=4)
    example_volume = azure.netapp.Volume("exampleVolume",
        location=example_resource_group.location,
        resource_group_name=example_resource_group.name,
        account_name=example_account.name,
        pool_name=example_pool.name,
        volume_path="my-unique-file-path",
        service_level="Premium",
        subnet_id=azurerm_subnet["test"]["id"],
        storage_quota_in_gb=100)
    example_snapshot = azure.netapp.Snapshot("exampleSnapshot",
        account_name=example_account.name,
        pool_name=example_pool.name,
        volume_name=example_volume.name,
        location=example_resource_group.location,
        resource_group_name=example_resource_group.name)
    
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    class MyStack : Stack
    {
        public MyStack()
        {
            var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
            {
                Location = "West Europe",
            });
            var exampleVirtualNetwork = new Azure.Network.VirtualNetwork("exampleVirtualNetwork", new Azure.Network.VirtualNetworkArgs
            {
                AddressSpaces = 
                {
                    "10.0.0.0/16",
                },
                Location = exampleResourceGroup.Location,
                ResourceGroupName = exampleResourceGroup.Name,
            });
            var exampleSubnet = new Azure.Network.Subnet("exampleSubnet", new Azure.Network.SubnetArgs
            {
                ResourceGroupName = exampleResourceGroup.Name,
                VirtualNetworkName = exampleVirtualNetwork.Name,
                AddressPrefixes = 
                {
                    "10.0.2.0/24",
                },
                Delegations = 
                {
                    new Azure.Network.Inputs.SubnetDelegationArgs
                    {
                        Name = "netapp",
                        ServiceDelegation = new Azure.Network.Inputs.SubnetDelegationServiceDelegationArgs
                        {
                            Name = "Microsoft.Netapp/volumes",
                            Actions = 
                            {
                                "Microsoft.Network/networkinterfaces/*",
                                "Microsoft.Network/virtualNetworks/subnets/join/action",
                            },
                        },
                    },
                },
            });
            var exampleAccount = new Azure.NetApp.Account("exampleAccount", new Azure.NetApp.AccountArgs
            {
                Location = exampleResourceGroup.Location,
                ResourceGroupName = exampleResourceGroup.Name,
            });
            var examplePool = new Azure.NetApp.Pool("examplePool", new Azure.NetApp.PoolArgs
            {
                AccountName = exampleAccount.Name,
                Location = exampleResourceGroup.Location,
                ResourceGroupName = exampleResourceGroup.Name,
                ServiceLevel = "Premium",
                SizeInTb = 4,
            });
            var exampleVolume = new Azure.NetApp.Volume("exampleVolume", new Azure.NetApp.VolumeArgs
            {
                Location = exampleResourceGroup.Location,
                ResourceGroupName = exampleResourceGroup.Name,
                AccountName = exampleAccount.Name,
                PoolName = examplePool.Name,
                VolumePath = "my-unique-file-path",
                ServiceLevel = "Premium",
                SubnetId = azurerm_subnet.Test.Id,
                StorageQuotaInGb = 100,
            });
            var exampleSnapshot = new Azure.NetApp.Snapshot("exampleSnapshot", new Azure.NetApp.SnapshotArgs
            {
                AccountName = exampleAccount.Name,
                PoolName = examplePool.Name,
                VolumeName = exampleVolume.Name,
                Location = exampleResourceGroup.Location,
                ResourceGroupName = exampleResourceGroup.Name,
            });
        }
    
    }
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/netapp"
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/network"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleVirtualNetwork, err := network.NewVirtualNetwork(ctx, "exampleVirtualNetwork", &network.VirtualNetworkArgs{
    			AddressSpaces: pulumi.StringArray{
    				pulumi.String("10.0.0.0/16"),
    			},
    			Location:          exampleResourceGroup.Location,
    			ResourceGroupName: exampleResourceGroup.Name,
    		})
    		if err != nil {
    			return err
    		}
    		_, err = network.NewSubnet(ctx, "exampleSubnet", &network.SubnetArgs{
    			ResourceGroupName:  exampleResourceGroup.Name,
    			VirtualNetworkName: exampleVirtualNetwork.Name,
    			AddressPrefixes: pulumi.StringArray{
    				pulumi.String("10.0.2.0/24"),
    			},
    			Delegations: network.SubnetDelegationArray{
    				&network.SubnetDelegationArgs{
    					Name: pulumi.String("netapp"),
    					ServiceDelegation: &network.SubnetDelegationServiceDelegationArgs{
    						Name: pulumi.String("Microsoft.Netapp/volumes"),
    						Actions: pulumi.StringArray{
    							pulumi.String("Microsoft.Network/networkinterfaces/*"),
    							pulumi.String("Microsoft.Network/virtualNetworks/subnets/join/action"),
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		exampleAccount, err := netapp.NewAccount(ctx, "exampleAccount", &netapp.AccountArgs{
    			Location:          exampleResourceGroup.Location,
    			ResourceGroupName: exampleResourceGroup.Name,
    		})
    		if err != nil {
    			return err
    		}
    		examplePool, err := netapp.NewPool(ctx, "examplePool", &netapp.PoolArgs{
    			AccountName:       exampleAccount.Name,
    			Location:          exampleResourceGroup.Location,
    			ResourceGroupName: exampleResourceGroup.Name,
    			ServiceLevel:      pulumi.String("Premium"),
    			SizeInTb:          pulumi.Int(4),
    		})
    		if err != nil {
    			return err
    		}
    		exampleVolume, err := netapp.NewVolume(ctx, "exampleVolume", &netapp.VolumeArgs{
    			Location:          exampleResourceGroup.Location,
    			ResourceGroupName: exampleResourceGroup.Name,
    			AccountName:       exampleAccount.Name,
    			PoolName:          examplePool.Name,
    			VolumePath:        pulumi.String("my-unique-file-path"),
    			ServiceLevel:      pulumi.String("Premium"),
    			SubnetId:          pulumi.Any(azurerm_subnet.Test.Id),
    			StorageQuotaInGb:  pulumi.Int(100),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = netapp.NewSnapshot(ctx, "exampleSnapshot", &netapp.SnapshotArgs{
    			AccountName:       exampleAccount.Name,
    			PoolName:          examplePool.Name,
    			VolumeName:        exampleVolume.Name,
    			Location:          exampleResourceGroup.Location,
    			ResourceGroupName: exampleResourceGroup.Name,
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    

    Create Snapshot Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Snapshot(name: string, args: SnapshotArgs, opts?: CustomResourceOptions);
    @overload
    def Snapshot(resource_name: str,
                 args: SnapshotArgs,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def Snapshot(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 account_name: Optional[str] = None,
                 pool_name: Optional[str] = None,
                 resource_group_name: Optional[str] = None,
                 volume_name: Optional[str] = None,
                 location: Optional[str] = None,
                 name: Optional[str] = None,
                 tags: Optional[Mapping[str, str]] = None)
    func NewSnapshot(ctx *Context, name string, args SnapshotArgs, opts ...ResourceOption) (*Snapshot, error)
    public Snapshot(string name, SnapshotArgs args, CustomResourceOptions? opts = null)
    public Snapshot(String name, SnapshotArgs args)
    public Snapshot(String name, SnapshotArgs args, CustomResourceOptions options)
    
    type: azure:netapp:Snapshot
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args SnapshotArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args SnapshotArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args SnapshotArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SnapshotArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SnapshotArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var azureSnapshotResource = new Azure.NetApp.Snapshot("azureSnapshotResource", new()
    {
        AccountName = "string",
        PoolName = "string",
        ResourceGroupName = "string",
        VolumeName = "string",
        Location = "string",
        Name = "string",
    });
    
    example, err := netapp.NewSnapshot(ctx, "azureSnapshotResource", &netapp.SnapshotArgs{
    	AccountName:       pulumi.String("string"),
    	PoolName:          pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	VolumeName:        pulumi.String("string"),
    	Location:          pulumi.String("string"),
    	Name:              pulumi.String("string"),
    })
    
    var azureSnapshotResource = new com.pulumi.azure.netapp.Snapshot("azureSnapshotResource", com.pulumi.azure.netapp.SnapshotArgs.builder()
        .accountName("string")
        .poolName("string")
        .resourceGroupName("string")
        .volumeName("string")
        .location("string")
        .name("string")
        .build());
    
    azure_snapshot_resource = azure.netapp.Snapshot("azureSnapshotResource",
        account_name="string",
        pool_name="string",
        resource_group_name="string",
        volume_name="string",
        location="string",
        name="string")
    
    const azureSnapshotResource = new azure.netapp.Snapshot("azureSnapshotResource", {
        accountName: "string",
        poolName: "string",
        resourceGroupName: "string",
        volumeName: "string",
        location: "string",
        name: "string",
    });
    
    type: azure:netapp:Snapshot
    properties:
        accountName: string
        location: string
        name: string
        poolName: string
        resourceGroupName: string
        volumeName: string
    

    Snapshot Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Snapshot resource accepts the following input properties:

    AccountName string
    The name of the NetApp account in which the NetApp Pool should be created. Changing this forces a new resource to be created.
    PoolName string
    The name of the NetApp pool in which the NetApp Volume should be created. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the resource group where the NetApp Snapshot should be created. Changing this forces a new resource to be created.
    VolumeName string
    The name of the NetApp volume in which the NetApp Snapshot should be created. Changing this forces a new resource to be created.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    The name of the NetApp Snapshot. Changing this forces a new resource to be created.
    Tags Dictionary<string, string>

    Deprecated: This property has been deprecated as the API no longer supports tags and will be removed in version 3.0 of the provider.

    AccountName string
    The name of the NetApp account in which the NetApp Pool should be created. Changing this forces a new resource to be created.
    PoolName string
    The name of the NetApp pool in which the NetApp Volume should be created. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the resource group where the NetApp Snapshot should be created. Changing this forces a new resource to be created.
    VolumeName string
    The name of the NetApp volume in which the NetApp Snapshot should be created. Changing this forces a new resource to be created.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    The name of the NetApp Snapshot. Changing this forces a new resource to be created.
    Tags map[string]string

    Deprecated: This property has been deprecated as the API no longer supports tags and will be removed in version 3.0 of the provider.

    accountName String
    The name of the NetApp account in which the NetApp Pool should be created. Changing this forces a new resource to be created.
    poolName String
    The name of the NetApp pool in which the NetApp Volume should be created. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the resource group where the NetApp Snapshot should be created. Changing this forces a new resource to be created.
    volumeName String
    The name of the NetApp volume in which the NetApp Snapshot should be created. Changing this forces a new resource to be created.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    The name of the NetApp Snapshot. Changing this forces a new resource to be created.
    tags Map<String,String>

    Deprecated: This property has been deprecated as the API no longer supports tags and will be removed in version 3.0 of the provider.

    accountName string
    The name of the NetApp account in which the NetApp Pool should be created. Changing this forces a new resource to be created.
    poolName string
    The name of the NetApp pool in which the NetApp Volume should be created. Changing this forces a new resource to be created.
    resourceGroupName string
    The name of the resource group where the NetApp Snapshot should be created. Changing this forces a new resource to be created.
    volumeName string
    The name of the NetApp volume in which the NetApp Snapshot should be created. Changing this forces a new resource to be created.
    location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name string
    The name of the NetApp Snapshot. Changing this forces a new resource to be created.
    tags {[key: string]: string}

    Deprecated: This property has been deprecated as the API no longer supports tags and will be removed in version 3.0 of the provider.

    account_name str
    The name of the NetApp account in which the NetApp Pool should be created. Changing this forces a new resource to be created.
    pool_name str
    The name of the NetApp pool in which the NetApp Volume should be created. Changing this forces a new resource to be created.
    resource_group_name str
    The name of the resource group where the NetApp Snapshot should be created. Changing this forces a new resource to be created.
    volume_name str
    The name of the NetApp volume in which the NetApp Snapshot should be created. Changing this forces a new resource to be created.
    location str
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name str
    The name of the NetApp Snapshot. Changing this forces a new resource to be created.
    tags Mapping[str, str]

    Deprecated: This property has been deprecated as the API no longer supports tags and will be removed in version 3.0 of the provider.

    accountName String
    The name of the NetApp account in which the NetApp Pool should be created. Changing this forces a new resource to be created.
    poolName String
    The name of the NetApp pool in which the NetApp Volume should be created. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the resource group where the NetApp Snapshot should be created. Changing this forces a new resource to be created.
    volumeName String
    The name of the NetApp volume in which the NetApp Snapshot should be created. Changing this forces a new resource to be created.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    The name of the NetApp Snapshot. Changing this forces a new resource to be created.
    tags Map<String>

    Deprecated: This property has been deprecated as the API no longer supports tags and will be removed in version 3.0 of the provider.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Snapshot resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Snapshot Resource

    Get an existing Snapshot resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: SnapshotState, opts?: CustomResourceOptions): Snapshot
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_name: Optional[str] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            pool_name: Optional[str] = None,
            resource_group_name: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            volume_name: Optional[str] = None) -> Snapshot
    func GetSnapshot(ctx *Context, name string, id IDInput, state *SnapshotState, opts ...ResourceOption) (*Snapshot, error)
    public static Snapshot Get(string name, Input<string> id, SnapshotState? state, CustomResourceOptions? opts = null)
    public static Snapshot get(String name, Output<String> id, SnapshotState state, CustomResourceOptions options)
    resources:  _:    type: azure:netapp:Snapshot    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AccountName string
    The name of the NetApp account in which the NetApp Pool should be created. Changing this forces a new resource to be created.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    The name of the NetApp Snapshot. Changing this forces a new resource to be created.
    PoolName string
    The name of the NetApp pool in which the NetApp Volume should be created. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the resource group where the NetApp Snapshot should be created. Changing this forces a new resource to be created.
    Tags Dictionary<string, string>

    Deprecated: This property has been deprecated as the API no longer supports tags and will be removed in version 3.0 of the provider.

    VolumeName string
    The name of the NetApp volume in which the NetApp Snapshot should be created. Changing this forces a new resource to be created.
    AccountName string
    The name of the NetApp account in which the NetApp Pool should be created. Changing this forces a new resource to be created.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    The name of the NetApp Snapshot. Changing this forces a new resource to be created.
    PoolName string
    The name of the NetApp pool in which the NetApp Volume should be created. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the resource group where the NetApp Snapshot should be created. Changing this forces a new resource to be created.
    Tags map[string]string

    Deprecated: This property has been deprecated as the API no longer supports tags and will be removed in version 3.0 of the provider.

    VolumeName string
    The name of the NetApp volume in which the NetApp Snapshot should be created. Changing this forces a new resource to be created.
    accountName String
    The name of the NetApp account in which the NetApp Pool should be created. Changing this forces a new resource to be created.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    The name of the NetApp Snapshot. Changing this forces a new resource to be created.
    poolName String
    The name of the NetApp pool in which the NetApp Volume should be created. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the resource group where the NetApp Snapshot should be created. Changing this forces a new resource to be created.
    tags Map<String,String>

    Deprecated: This property has been deprecated as the API no longer supports tags and will be removed in version 3.0 of the provider.

    volumeName String
    The name of the NetApp volume in which the NetApp Snapshot should be created. Changing this forces a new resource to be created.
    accountName string
    The name of the NetApp account in which the NetApp Pool should be created. Changing this forces a new resource to be created.
    location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name string
    The name of the NetApp Snapshot. Changing this forces a new resource to be created.
    poolName string
    The name of the NetApp pool in which the NetApp Volume should be created. Changing this forces a new resource to be created.
    resourceGroupName string
    The name of the resource group where the NetApp Snapshot should be created. Changing this forces a new resource to be created.
    tags {[key: string]: string}

    Deprecated: This property has been deprecated as the API no longer supports tags and will be removed in version 3.0 of the provider.

    volumeName string
    The name of the NetApp volume in which the NetApp Snapshot should be created. Changing this forces a new resource to be created.
    account_name str
    The name of the NetApp account in which the NetApp Pool should be created. Changing this forces a new resource to be created.
    location str
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name str
    The name of the NetApp Snapshot. Changing this forces a new resource to be created.
    pool_name str
    The name of the NetApp pool in which the NetApp Volume should be created. Changing this forces a new resource to be created.
    resource_group_name str
    The name of the resource group where the NetApp Snapshot should be created. Changing this forces a new resource to be created.
    tags Mapping[str, str]

    Deprecated: This property has been deprecated as the API no longer supports tags and will be removed in version 3.0 of the provider.

    volume_name str
    The name of the NetApp volume in which the NetApp Snapshot should be created. Changing this forces a new resource to be created.
    accountName String
    The name of the NetApp account in which the NetApp Pool should be created. Changing this forces a new resource to be created.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    The name of the NetApp Snapshot. Changing this forces a new resource to be created.
    poolName String
    The name of the NetApp pool in which the NetApp Volume should be created. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the resource group where the NetApp Snapshot should be created. Changing this forces a new resource to be created.
    tags Map<String>

    Deprecated: This property has been deprecated as the API no longer supports tags and will be removed in version 3.0 of the provider.

    volumeName String
    The name of the NetApp volume in which the NetApp Snapshot should be created. Changing this forces a new resource to be created.

    Import

    NetApp Snapshot can be imported using the resource id, e.g.

     $ pulumi import azure:netapp/snapshot:Snapshot example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.NetApp/netAppAccounts/account1/capacityPools/pool1/volumes/volume1/snapshots/snapshot1
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Viewing docs for Azure v4.42.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.