1. Packages
  2. Azure Native v2
  3. API Docs
  4. netapp
  5. VolumeGroup
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.netapp.VolumeGroup

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

Volume group resource for create Azure REST API version: 2022-11-01. Prior API version in Azure Native 1.x: 2021-10-01.

Other available API versions: 2021-10-01, 2022-11-01-preview, 2023-05-01, 2023-05-01-preview, 2023-07-01, 2023-07-01-preview, 2023-11-01, 2023-11-01-preview, 2024-01-01, 2024-03-01, 2024-03-01-preview, 2024-05-01, 2024-05-01-preview, 2024-07-01, 2024-07-01-preview.

Example Usage

VolumeGroups_Create

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var volumeGroup = new AzureNative.NetApp.VolumeGroup("volumeGroup", new()
    {
        AccountName = "account1",
        GroupMetaData = new AzureNative.NetApp.Inputs.VolumeGroupMetaDataArgs
        {
            ApplicationIdentifier = "DEV",
            ApplicationType = AzureNative.NetApp.ApplicationType.SAP_HANA,
            DeploymentSpecId = "20542149-bfca-5618-1879-9863dc6767f1",
            GroupDescription = "Volume group",
        },
        Location = "westus",
        ResourceGroupName = "myRG",
        VolumeGroupName = "group1",
        Volumes = new[]
        {
            new AzureNative.NetApp.Inputs.VolumeGroupVolumePropertiesArgs
            {
                CapacityPoolResourceId = "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRG/providers/Microsoft.NetApp/netAppAccounts/account1/capacityPools/pool1",
                CreationToken = "test-data-mnt00001",
                Name = "test-data-mnt00001",
                ProximityPlacementGroup = "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/cys_sjain_fcp_rg/providers/Microsoft.Compute/proximityPlacementGroups/svlqa_sjain_multivolume_ppg",
                ServiceLevel = AzureNative.NetApp.ServiceLevel.Premium,
                SubnetId = "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3",
                ThroughputMibps = 10,
                UsageThreshold = 107374182400,
                VolumeSpecName = "data",
            },
            new AzureNative.NetApp.Inputs.VolumeGroupVolumePropertiesArgs
            {
                CapacityPoolResourceId = "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRG/providers/Microsoft.NetApp/netAppAccounts/account1/capacityPools/pool1",
                CreationToken = "test-log-mnt00001",
                Name = "test-log-mnt00001",
                ProximityPlacementGroup = "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/cys_sjain_fcp_rg/providers/Microsoft.Compute/proximityPlacementGroups/svlqa_sjain_multivolume_ppg",
                ServiceLevel = AzureNative.NetApp.ServiceLevel.Premium,
                SubnetId = "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3",
                ThroughputMibps = 10,
                UsageThreshold = 107374182400,
                VolumeSpecName = "log",
            },
            new AzureNative.NetApp.Inputs.VolumeGroupVolumePropertiesArgs
            {
                CapacityPoolResourceId = "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRG/providers/Microsoft.NetApp/netAppAccounts/account1/capacityPools/pool1",
                CreationToken = "test-shared",
                Name = "test-shared",
                ProximityPlacementGroup = "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/cys_sjain_fcp_rg/providers/Microsoft.Compute/proximityPlacementGroups/svlqa_sjain_multivolume_ppg",
                ServiceLevel = AzureNative.NetApp.ServiceLevel.Premium,
                SubnetId = "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3",
                ThroughputMibps = 10,
                UsageThreshold = 107374182400,
                VolumeSpecName = "shared",
            },
        },
    });

});
Copy
package main

import (
	netapp "github.com/pulumi/pulumi-azure-native-sdk/netapp/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := netapp.NewVolumeGroup(ctx, "volumeGroup", &netapp.VolumeGroupArgs{
			AccountName: pulumi.String("account1"),
			GroupMetaData: &netapp.VolumeGroupMetaDataArgs{
				ApplicationIdentifier: pulumi.String("DEV"),
				ApplicationType:       pulumi.String(netapp.ApplicationType_SAP_HANA),
				DeploymentSpecId:      pulumi.String("20542149-bfca-5618-1879-9863dc6767f1"),
				GroupDescription:      pulumi.String("Volume group"),
			},
			Location:          pulumi.String("westus"),
			ResourceGroupName: pulumi.String("myRG"),
			VolumeGroupName:   pulumi.String("group1"),
			Volumes: netapp.VolumeGroupVolumePropertiesArray{
				&netapp.VolumeGroupVolumePropertiesArgs{
					CapacityPoolResourceId:  pulumi.String("/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRG/providers/Microsoft.NetApp/netAppAccounts/account1/capacityPools/pool1"),
					CreationToken:           pulumi.String("test-data-mnt00001"),
					Name:                    pulumi.String("test-data-mnt00001"),
					ProximityPlacementGroup: pulumi.String("/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/cys_sjain_fcp_rg/providers/Microsoft.Compute/proximityPlacementGroups/svlqa_sjain_multivolume_ppg"),
					ServiceLevel:            pulumi.String(netapp.ServiceLevelPremium),
					SubnetId:                pulumi.String("/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3"),
					ThroughputMibps:         pulumi.Float64(10),
					UsageThreshold:          pulumi.Float64(107374182400),
					VolumeSpecName:          pulumi.String("data"),
				},
				&netapp.VolumeGroupVolumePropertiesArgs{
					CapacityPoolResourceId:  pulumi.String("/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRG/providers/Microsoft.NetApp/netAppAccounts/account1/capacityPools/pool1"),
					CreationToken:           pulumi.String("test-log-mnt00001"),
					Name:                    pulumi.String("test-log-mnt00001"),
					ProximityPlacementGroup: pulumi.String("/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/cys_sjain_fcp_rg/providers/Microsoft.Compute/proximityPlacementGroups/svlqa_sjain_multivolume_ppg"),
					ServiceLevel:            pulumi.String(netapp.ServiceLevelPremium),
					SubnetId:                pulumi.String("/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3"),
					ThroughputMibps:         pulumi.Float64(10),
					UsageThreshold:          pulumi.Float64(107374182400),
					VolumeSpecName:          pulumi.String("log"),
				},
				&netapp.VolumeGroupVolumePropertiesArgs{
					CapacityPoolResourceId:  pulumi.String("/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRG/providers/Microsoft.NetApp/netAppAccounts/account1/capacityPools/pool1"),
					CreationToken:           pulumi.String("test-shared"),
					Name:                    pulumi.String("test-shared"),
					ProximityPlacementGroup: pulumi.String("/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/cys_sjain_fcp_rg/providers/Microsoft.Compute/proximityPlacementGroups/svlqa_sjain_multivolume_ppg"),
					ServiceLevel:            pulumi.String(netapp.ServiceLevelPremium),
					SubnetId:                pulumi.String("/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3"),
					ThroughputMibps:         pulumi.Float64(10),
					UsageThreshold:          pulumi.Float64(107374182400),
					VolumeSpecName:          pulumi.String("shared"),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.netapp.VolumeGroup;
import com.pulumi.azurenative.netapp.VolumeGroupArgs;
import com.pulumi.azurenative.netapp.inputs.VolumeGroupMetaDataArgs;
import com.pulumi.azurenative.netapp.inputs.VolumeGroupVolumePropertiesArgs;
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) {
        var volumeGroup = new VolumeGroup("volumeGroup", VolumeGroupArgs.builder()
            .accountName("account1")
            .groupMetaData(VolumeGroupMetaDataArgs.builder()
                .applicationIdentifier("DEV")
                .applicationType("SAP-HANA")
                .deploymentSpecId("20542149-bfca-5618-1879-9863dc6767f1")
                .groupDescription("Volume group")
                .build())
            .location("westus")
            .resourceGroupName("myRG")
            .volumeGroupName("group1")
            .volumes(            
                VolumeGroupVolumePropertiesArgs.builder()
                    .capacityPoolResourceId("/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRG/providers/Microsoft.NetApp/netAppAccounts/account1/capacityPools/pool1")
                    .creationToken("test-data-mnt00001")
                    .name("test-data-mnt00001")
                    .proximityPlacementGroup("/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/cys_sjain_fcp_rg/providers/Microsoft.Compute/proximityPlacementGroups/svlqa_sjain_multivolume_ppg")
                    .serviceLevel("Premium")
                    .subnetId("/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3")
                    .throughputMibps(10)
                    .usageThreshold(107374182400)
                    .volumeSpecName("data")
                    .build(),
                VolumeGroupVolumePropertiesArgs.builder()
                    .capacityPoolResourceId("/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRG/providers/Microsoft.NetApp/netAppAccounts/account1/capacityPools/pool1")
                    .creationToken("test-log-mnt00001")
                    .name("test-log-mnt00001")
                    .proximityPlacementGroup("/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/cys_sjain_fcp_rg/providers/Microsoft.Compute/proximityPlacementGroups/svlqa_sjain_multivolume_ppg")
                    .serviceLevel("Premium")
                    .subnetId("/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3")
                    .throughputMibps(10)
                    .usageThreshold(107374182400)
                    .volumeSpecName("log")
                    .build(),
                VolumeGroupVolumePropertiesArgs.builder()
                    .capacityPoolResourceId("/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRG/providers/Microsoft.NetApp/netAppAccounts/account1/capacityPools/pool1")
                    .creationToken("test-shared")
                    .name("test-shared")
                    .proximityPlacementGroup("/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/cys_sjain_fcp_rg/providers/Microsoft.Compute/proximityPlacementGroups/svlqa_sjain_multivolume_ppg")
                    .serviceLevel("Premium")
                    .subnetId("/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3")
                    .throughputMibps(10)
                    .usageThreshold(107374182400)
                    .volumeSpecName("shared")
                    .build())
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const volumeGroup = new azure_native.netapp.VolumeGroup("volumeGroup", {
    accountName: "account1",
    groupMetaData: {
        applicationIdentifier: "DEV",
        applicationType: azure_native.netapp.ApplicationType.SAP_HANA,
        deploymentSpecId: "20542149-bfca-5618-1879-9863dc6767f1",
        groupDescription: "Volume group",
    },
    location: "westus",
    resourceGroupName: "myRG",
    volumeGroupName: "group1",
    volumes: [
        {
            capacityPoolResourceId: "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRG/providers/Microsoft.NetApp/netAppAccounts/account1/capacityPools/pool1",
            creationToken: "test-data-mnt00001",
            name: "test-data-mnt00001",
            proximityPlacementGroup: "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/cys_sjain_fcp_rg/providers/Microsoft.Compute/proximityPlacementGroups/svlqa_sjain_multivolume_ppg",
            serviceLevel: azure_native.netapp.ServiceLevel.Premium,
            subnetId: "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3",
            throughputMibps: 10,
            usageThreshold: 107374182400,
            volumeSpecName: "data",
        },
        {
            capacityPoolResourceId: "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRG/providers/Microsoft.NetApp/netAppAccounts/account1/capacityPools/pool1",
            creationToken: "test-log-mnt00001",
            name: "test-log-mnt00001",
            proximityPlacementGroup: "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/cys_sjain_fcp_rg/providers/Microsoft.Compute/proximityPlacementGroups/svlqa_sjain_multivolume_ppg",
            serviceLevel: azure_native.netapp.ServiceLevel.Premium,
            subnetId: "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3",
            throughputMibps: 10,
            usageThreshold: 107374182400,
            volumeSpecName: "log",
        },
        {
            capacityPoolResourceId: "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRG/providers/Microsoft.NetApp/netAppAccounts/account1/capacityPools/pool1",
            creationToken: "test-shared",
            name: "test-shared",
            proximityPlacementGroup: "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/cys_sjain_fcp_rg/providers/Microsoft.Compute/proximityPlacementGroups/svlqa_sjain_multivolume_ppg",
            serviceLevel: azure_native.netapp.ServiceLevel.Premium,
            subnetId: "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3",
            throughputMibps: 10,
            usageThreshold: 107374182400,
            volumeSpecName: "shared",
        },
    ],
});
Copy
import pulumi
import pulumi_azure_native as azure_native

volume_group = azure_native.netapp.VolumeGroup("volumeGroup",
    account_name="account1",
    group_meta_data={
        "application_identifier": "DEV",
        "application_type": azure_native.netapp.ApplicationType.SA_P_HANA,
        "deployment_spec_id": "20542149-bfca-5618-1879-9863dc6767f1",
        "group_description": "Volume group",
    },
    location="westus",
    resource_group_name="myRG",
    volume_group_name="group1",
    volumes=[
        {
            "capacity_pool_resource_id": "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRG/providers/Microsoft.NetApp/netAppAccounts/account1/capacityPools/pool1",
            "creation_token": "test-data-mnt00001",
            "name": "test-data-mnt00001",
            "proximity_placement_group": "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/cys_sjain_fcp_rg/providers/Microsoft.Compute/proximityPlacementGroups/svlqa_sjain_multivolume_ppg",
            "service_level": azure_native.netapp.ServiceLevel.PREMIUM,
            "subnet_id": "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3",
            "throughput_mibps": 10,
            "usage_threshold": 107374182400,
            "volume_spec_name": "data",
        },
        {
            "capacity_pool_resource_id": "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRG/providers/Microsoft.NetApp/netAppAccounts/account1/capacityPools/pool1",
            "creation_token": "test-log-mnt00001",
            "name": "test-log-mnt00001",
            "proximity_placement_group": "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/cys_sjain_fcp_rg/providers/Microsoft.Compute/proximityPlacementGroups/svlqa_sjain_multivolume_ppg",
            "service_level": azure_native.netapp.ServiceLevel.PREMIUM,
            "subnet_id": "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3",
            "throughput_mibps": 10,
            "usage_threshold": 107374182400,
            "volume_spec_name": "log",
        },
        {
            "capacity_pool_resource_id": "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRG/providers/Microsoft.NetApp/netAppAccounts/account1/capacityPools/pool1",
            "creation_token": "test-shared",
            "name": "test-shared",
            "proximity_placement_group": "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/cys_sjain_fcp_rg/providers/Microsoft.Compute/proximityPlacementGroups/svlqa_sjain_multivolume_ppg",
            "service_level": azure_native.netapp.ServiceLevel.PREMIUM,
            "subnet_id": "/subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3",
            "throughput_mibps": 10,
            "usage_threshold": 107374182400,
            "volume_spec_name": "shared",
        },
    ])
Copy
resources:
  volumeGroup:
    type: azure-native:netapp:VolumeGroup
    properties:
      accountName: account1
      groupMetaData:
        applicationIdentifier: DEV
        applicationType: SAP-HANA
        deploymentSpecId: 20542149-bfca-5618-1879-9863dc6767f1
        groupDescription: Volume group
      location: westus
      resourceGroupName: myRG
      volumeGroupName: group1
      volumes:
        - capacityPoolResourceId: /subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRG/providers/Microsoft.NetApp/netAppAccounts/account1/capacityPools/pool1
          creationToken: test-data-mnt00001
          name: test-data-mnt00001
          proximityPlacementGroup: /subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/cys_sjain_fcp_rg/providers/Microsoft.Compute/proximityPlacementGroups/svlqa_sjain_multivolume_ppg
          serviceLevel: Premium
          subnetId: /subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3
          throughputMibps: 10
          usageThreshold: 1.073741824e+11
          volumeSpecName: data
        - capacityPoolResourceId: /subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRG/providers/Microsoft.NetApp/netAppAccounts/account1/capacityPools/pool1
          creationToken: test-log-mnt00001
          name: test-log-mnt00001
          proximityPlacementGroup: /subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/cys_sjain_fcp_rg/providers/Microsoft.Compute/proximityPlacementGroups/svlqa_sjain_multivolume_ppg
          serviceLevel: Premium
          subnetId: /subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3
          throughputMibps: 10
          usageThreshold: 1.073741824e+11
          volumeSpecName: log
        - capacityPoolResourceId: /subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRG/providers/Microsoft.NetApp/netAppAccounts/account1/capacityPools/pool1
          creationToken: test-shared
          name: test-shared
          proximityPlacementGroup: /subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/cys_sjain_fcp_rg/providers/Microsoft.Compute/proximityPlacementGroups/svlqa_sjain_multivolume_ppg
          serviceLevel: Premium
          subnetId: /subscriptions/d633cc2e-722b-4ae1-b636-bbd9e4c60ed9/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3
          throughputMibps: 10
          usageThreshold: 1.073741824e+11
          volumeSpecName: shared
Copy

Create VolumeGroup Resource

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

Constructor syntax

new VolumeGroup(name: string, args: VolumeGroupArgs, opts?: CustomResourceOptions);
@overload
def VolumeGroup(resource_name: str,
                args: VolumeGroupArgs,
                opts: Optional[ResourceOptions] = None)

@overload
def VolumeGroup(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                account_name: Optional[str] = None,
                resource_group_name: Optional[str] = None,
                group_meta_data: Optional[VolumeGroupMetaDataArgs] = None,
                location: Optional[str] = None,
                volume_group_name: Optional[str] = None,
                volumes: Optional[Sequence[VolumeGroupVolumePropertiesArgs]] = None)
func NewVolumeGroup(ctx *Context, name string, args VolumeGroupArgs, opts ...ResourceOption) (*VolumeGroup, error)
public VolumeGroup(string name, VolumeGroupArgs args, CustomResourceOptions? opts = null)
public VolumeGroup(String name, VolumeGroupArgs args)
public VolumeGroup(String name, VolumeGroupArgs args, CustomResourceOptions options)
type: azure-native:netapp:VolumeGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. VolumeGroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. VolumeGroupArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. VolumeGroupArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. VolumeGroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. VolumeGroupArgs
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 azure_nativeVolumeGroupResource = new AzureNative.Netapp.VolumeGroup("azure-nativeVolumeGroupResource", new()
{
    AccountName = "string",
    ResourceGroupName = "string",
    GroupMetaData = 
    {
        { "applicationIdentifier", "string" },
        { "applicationType", "string" },
        { "deploymentSpecId", "string" },
        { "globalPlacementRules", new[]
        {
            
            {
                { "key", "string" },
                { "value", "string" },
            },
        } },
        { "groupDescription", "string" },
    },
    Location = "string",
    VolumeGroupName = "string",
    Volumes = new[]
    {
        
        {
            { "creationToken", "string" },
            { "usageThreshold", 0 },
            { "subnetId", "string" },
            { "ldapEnabled", false },
            { "dataProtection", 
            {
                { "backup", 
                {
                    { "backupEnabled", false },
                    { "backupPolicyId", "string" },
                    { "policyEnforced", false },
                } },
                { "replication", 
                {
                    { "remoteVolumeResourceId", "string" },
                    { "endpointType", "string" },
                    { "remoteVolumeRegion", "string" },
                    { "replicationId", "string" },
                    { "replicationSchedule", "string" },
                } },
                { "snapshot", 
                {
                    { "snapshotPolicyId", "string" },
                } },
                { "volumeRelocation", 
                {
                    { "relocationRequested", false },
                } },
            } },
            { "name", "string" },
            { "networkFeatures", "string" },
            { "defaultGroupQuotaInKiBs", 0 },
            { "defaultUserQuotaInKiBs", 0 },
            { "deleteBaseSnapshot", false },
            { "enableSubvolumes", "string" },
            { "encryptionKeySource", "string" },
            { "exportPolicy", 
            {
                { "rules", new[]
                {
                    
                    {
                        { "allowedClients", "string" },
                        { "chownMode", "string" },
                        { "cifs", false },
                        { "hasRootAccess", false },
                        { "kerberos5ReadOnly", false },
                        { "kerberos5ReadWrite", false },
                        { "kerberos5iReadOnly", false },
                        { "kerberos5iReadWrite", false },
                        { "kerberos5pReadOnly", false },
                        { "kerberos5pReadWrite", false },
                        { "nfsv3", false },
                        { "nfsv41", false },
                        { "ruleIndex", 0 },
                        { "unixReadOnly", false },
                        { "unixReadWrite", false },
                    },
                } },
            } },
            { "isDefaultQuotaEnabled", false },
            { "isLargeVolume", false },
            { "isRestoring", false },
            { "kerberosEnabled", false },
            { "keyVaultPrivateEndpointResourceId", "string" },
            { "avsDataStore", "string" },
            { "coolAccess", false },
            { "placementRules", new[]
            {
                
                {
                    { "key", "string" },
                    { "value", "string" },
                },
            } },
            { "coolnessPeriod", 0 },
            { "protocolTypes", new[]
            {
                "string",
            } },
            { "proximityPlacementGroup", "string" },
            { "securityStyle", "string" },
            { "serviceLevel", "string" },
            { "smbAccessBasedEnumeration", "string" },
            { "smbContinuouslyAvailable", false },
            { "smbEncryption", false },
            { "smbNonBrowsable", "string" },
            { "snapshotDirectoryVisible", false },
            { "snapshotId", "string" },
            { "capacityPoolResourceId", "string" },
            { "tags", 
            {
                { "string", "string" },
            } },
            { "throughputMibps", 0 },
            { "unixPermissions", "string" },
            { "backupId", "string" },
            { "volumeSpecName", "string" },
            { "volumeType", "string" },
        },
    },
});
Copy
example, err := netapp.NewVolumeGroup(ctx, "azure-nativeVolumeGroupResource", &netapp.VolumeGroupArgs{
	AccountName:       "string",
	ResourceGroupName: "string",
	GroupMetaData: map[string]interface{}{
		"applicationIdentifier": "string",
		"applicationType":       "string",
		"deploymentSpecId":      "string",
		"globalPlacementRules": []map[string]interface{}{
			map[string]interface{}{
				"key":   "string",
				"value": "string",
			},
		},
		"groupDescription": "string",
	},
	Location:        "string",
	VolumeGroupName: "string",
	Volumes: []map[string]interface{}{
		map[string]interface{}{
			"creationToken":  "string",
			"usageThreshold": 0,
			"subnetId":       "string",
			"ldapEnabled":    false,
			"dataProtection": map[string]interface{}{
				"backup": map[string]interface{}{
					"backupEnabled":  false,
					"backupPolicyId": "string",
					"policyEnforced": false,
				},
				"replication": map[string]interface{}{
					"remoteVolumeResourceId": "string",
					"endpointType":           "string",
					"remoteVolumeRegion":     "string",
					"replicationId":          "string",
					"replicationSchedule":    "string",
				},
				"snapshot": map[string]interface{}{
					"snapshotPolicyId": "string",
				},
				"volumeRelocation": map[string]interface{}{
					"relocationRequested": false,
				},
			},
			"name":                    "string",
			"networkFeatures":         "string",
			"defaultGroupQuotaInKiBs": 0,
			"defaultUserQuotaInKiBs":  0,
			"deleteBaseSnapshot":      false,
			"enableSubvolumes":        "string",
			"encryptionKeySource":     "string",
			"exportPolicy": map[string]interface{}{
				"rules": []map[string]interface{}{
					map[string]interface{}{
						"allowedClients":      "string",
						"chownMode":           "string",
						"cifs":                false,
						"hasRootAccess":       false,
						"kerberos5ReadOnly":   false,
						"kerberos5ReadWrite":  false,
						"kerberos5iReadOnly":  false,
						"kerberos5iReadWrite": false,
						"kerberos5pReadOnly":  false,
						"kerberos5pReadWrite": false,
						"nfsv3":               false,
						"nfsv41":              false,
						"ruleIndex":           0,
						"unixReadOnly":        false,
						"unixReadWrite":       false,
					},
				},
			},
			"isDefaultQuotaEnabled":             false,
			"isLargeVolume":                     false,
			"isRestoring":                       false,
			"kerberosEnabled":                   false,
			"keyVaultPrivateEndpointResourceId": "string",
			"avsDataStore":                      "string",
			"coolAccess":                        false,
			"placementRules": []map[string]interface{}{
				map[string]interface{}{
					"key":   "string",
					"value": "string",
				},
			},
			"coolnessPeriod": 0,
			"protocolTypes": []string{
				"string",
			},
			"proximityPlacementGroup":   "string",
			"securityStyle":             "string",
			"serviceLevel":              "string",
			"smbAccessBasedEnumeration": "string",
			"smbContinuouslyAvailable":  false,
			"smbEncryption":             false,
			"smbNonBrowsable":           "string",
			"snapshotDirectoryVisible":  false,
			"snapshotId":                "string",
			"capacityPoolResourceId":    "string",
			"tags": map[string]interface{}{
				"string": "string",
			},
			"throughputMibps": 0,
			"unixPermissions": "string",
			"backupId":        "string",
			"volumeSpecName":  "string",
			"volumeType":      "string",
		},
	},
})
Copy
var azure_nativeVolumeGroupResource = new VolumeGroup("azure-nativeVolumeGroupResource", VolumeGroupArgs.builder()
    .accountName("string")
    .resourceGroupName("string")
    .groupMetaData(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .location("string")
    .volumeGroupName("string")
    .volumes(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
azure_native_volume_group_resource = azure_native.netapp.VolumeGroup("azure-nativeVolumeGroupResource",
    account_name=string,
    resource_group_name=string,
    group_meta_data={
        applicationIdentifier: string,
        applicationType: string,
        deploymentSpecId: string,
        globalPlacementRules: [{
            key: string,
            value: string,
        }],
        groupDescription: string,
    },
    location=string,
    volume_group_name=string,
    volumes=[{
        creationToken: string,
        usageThreshold: 0,
        subnetId: string,
        ldapEnabled: False,
        dataProtection: {
            backup: {
                backupEnabled: False,
                backupPolicyId: string,
                policyEnforced: False,
            },
            replication: {
                remoteVolumeResourceId: string,
                endpointType: string,
                remoteVolumeRegion: string,
                replicationId: string,
                replicationSchedule: string,
            },
            snapshot: {
                snapshotPolicyId: string,
            },
            volumeRelocation: {
                relocationRequested: False,
            },
        },
        name: string,
        networkFeatures: string,
        defaultGroupQuotaInKiBs: 0,
        defaultUserQuotaInKiBs: 0,
        deleteBaseSnapshot: False,
        enableSubvolumes: string,
        encryptionKeySource: string,
        exportPolicy: {
            rules: [{
                allowedClients: string,
                chownMode: string,
                cifs: False,
                hasRootAccess: False,
                kerberos5ReadOnly: False,
                kerberos5ReadWrite: False,
                kerberos5iReadOnly: False,
                kerberos5iReadWrite: False,
                kerberos5pReadOnly: False,
                kerberos5pReadWrite: False,
                nfsv3: False,
                nfsv41: False,
                ruleIndex: 0,
                unixReadOnly: False,
                unixReadWrite: False,
            }],
        },
        isDefaultQuotaEnabled: False,
        isLargeVolume: False,
        isRestoring: False,
        kerberosEnabled: False,
        keyVaultPrivateEndpointResourceId: string,
        avsDataStore: string,
        coolAccess: False,
        placementRules: [{
            key: string,
            value: string,
        }],
        coolnessPeriod: 0,
        protocolTypes: [string],
        proximityPlacementGroup: string,
        securityStyle: string,
        serviceLevel: string,
        smbAccessBasedEnumeration: string,
        smbContinuouslyAvailable: False,
        smbEncryption: False,
        smbNonBrowsable: string,
        snapshotDirectoryVisible: False,
        snapshotId: string,
        capacityPoolResourceId: string,
        tags: {
            string: string,
        },
        throughputMibps: 0,
        unixPermissions: string,
        backupId: string,
        volumeSpecName: string,
        volumeType: string,
    }])
Copy
const azure_nativeVolumeGroupResource = new azure_native.netapp.VolumeGroup("azure-nativeVolumeGroupResource", {
    accountName: "string",
    resourceGroupName: "string",
    groupMetaData: {
        applicationIdentifier: "string",
        applicationType: "string",
        deploymentSpecId: "string",
        globalPlacementRules: [{
            key: "string",
            value: "string",
        }],
        groupDescription: "string",
    },
    location: "string",
    volumeGroupName: "string",
    volumes: [{
        creationToken: "string",
        usageThreshold: 0,
        subnetId: "string",
        ldapEnabled: false,
        dataProtection: {
            backup: {
                backupEnabled: false,
                backupPolicyId: "string",
                policyEnforced: false,
            },
            replication: {
                remoteVolumeResourceId: "string",
                endpointType: "string",
                remoteVolumeRegion: "string",
                replicationId: "string",
                replicationSchedule: "string",
            },
            snapshot: {
                snapshotPolicyId: "string",
            },
            volumeRelocation: {
                relocationRequested: false,
            },
        },
        name: "string",
        networkFeatures: "string",
        defaultGroupQuotaInKiBs: 0,
        defaultUserQuotaInKiBs: 0,
        deleteBaseSnapshot: false,
        enableSubvolumes: "string",
        encryptionKeySource: "string",
        exportPolicy: {
            rules: [{
                allowedClients: "string",
                chownMode: "string",
                cifs: false,
                hasRootAccess: false,
                kerberos5ReadOnly: false,
                kerberos5ReadWrite: false,
                kerberos5iReadOnly: false,
                kerberos5iReadWrite: false,
                kerberos5pReadOnly: false,
                kerberos5pReadWrite: false,
                nfsv3: false,
                nfsv41: false,
                ruleIndex: 0,
                unixReadOnly: false,
                unixReadWrite: false,
            }],
        },
        isDefaultQuotaEnabled: false,
        isLargeVolume: false,
        isRestoring: false,
        kerberosEnabled: false,
        keyVaultPrivateEndpointResourceId: "string",
        avsDataStore: "string",
        coolAccess: false,
        placementRules: [{
            key: "string",
            value: "string",
        }],
        coolnessPeriod: 0,
        protocolTypes: ["string"],
        proximityPlacementGroup: "string",
        securityStyle: "string",
        serviceLevel: "string",
        smbAccessBasedEnumeration: "string",
        smbContinuouslyAvailable: false,
        smbEncryption: false,
        smbNonBrowsable: "string",
        snapshotDirectoryVisible: false,
        snapshotId: "string",
        capacityPoolResourceId: "string",
        tags: {
            string: "string",
        },
        throughputMibps: 0,
        unixPermissions: "string",
        backupId: "string",
        volumeSpecName: "string",
        volumeType: "string",
    }],
});
Copy
type: azure-native:netapp:VolumeGroup
properties:
    accountName: string
    groupMetaData:
        applicationIdentifier: string
        applicationType: string
        deploymentSpecId: string
        globalPlacementRules:
            - key: string
              value: string
        groupDescription: string
    location: string
    resourceGroupName: string
    volumeGroupName: string
    volumes:
        - avsDataStore: string
          backupId: string
          capacityPoolResourceId: string
          coolAccess: false
          coolnessPeriod: 0
          creationToken: string
          dataProtection:
            backup:
                backupEnabled: false
                backupPolicyId: string
                policyEnforced: false
            replication:
                endpointType: string
                remoteVolumeRegion: string
                remoteVolumeResourceId: string
                replicationId: string
                replicationSchedule: string
            snapshot:
                snapshotPolicyId: string
            volumeRelocation:
                relocationRequested: false
          defaultGroupQuotaInKiBs: 0
          defaultUserQuotaInKiBs: 0
          deleteBaseSnapshot: false
          enableSubvolumes: string
          encryptionKeySource: string
          exportPolicy:
            rules:
                - allowedClients: string
                  chownMode: string
                  cifs: false
                  hasRootAccess: false
                  kerberos5ReadOnly: false
                  kerberos5ReadWrite: false
                  kerberos5iReadOnly: false
                  kerberos5iReadWrite: false
                  kerberos5pReadOnly: false
                  kerberos5pReadWrite: false
                  nfsv3: false
                  nfsv41: false
                  ruleIndex: 0
                  unixReadOnly: false
                  unixReadWrite: false
          isDefaultQuotaEnabled: false
          isLargeVolume: false
          isRestoring: false
          kerberosEnabled: false
          keyVaultPrivateEndpointResourceId: string
          ldapEnabled: false
          name: string
          networkFeatures: string
          placementRules:
            - key: string
              value: string
          protocolTypes:
            - string
          proximityPlacementGroup: string
          securityStyle: string
          serviceLevel: string
          smbAccessBasedEnumeration: string
          smbContinuouslyAvailable: false
          smbEncryption: false
          smbNonBrowsable: string
          snapshotDirectoryVisible: false
          snapshotId: string
          subnetId: string
          tags:
            string: string
          throughputMibps: 0
          unixPermissions: string
          usageThreshold: 0
          volumeSpecName: string
          volumeType: string
Copy

VolumeGroup 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 VolumeGroup resource accepts the following input properties:

AccountName
This property is required.
Changes to this property will trigger replacement.
string
The name of the NetApp account
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
GroupMetaData Pulumi.AzureNative.NetApp.Inputs.VolumeGroupMetaData
Volume group details
Location Changes to this property will trigger replacement. string
Resource location
VolumeGroupName Changes to this property will trigger replacement. string
The name of the volumeGroup
Volumes List<Pulumi.AzureNative.NetApp.Inputs.VolumeGroupVolumeProperties>
List of volumes from group
AccountName
This property is required.
Changes to this property will trigger replacement.
string
The name of the NetApp account
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
GroupMetaData VolumeGroupMetaDataArgs
Volume group details
Location Changes to this property will trigger replacement. string
Resource location
VolumeGroupName Changes to this property will trigger replacement. string
The name of the volumeGroup
Volumes []VolumeGroupVolumePropertiesArgs
List of volumes from group
accountName
This property is required.
Changes to this property will trigger replacement.
String
The name of the NetApp account
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
groupMetaData VolumeGroupMetaData
Volume group details
location Changes to this property will trigger replacement. String
Resource location
volumeGroupName Changes to this property will trigger replacement. String
The name of the volumeGroup
volumes List<VolumeGroupVolumeProperties>
List of volumes from group
accountName
This property is required.
Changes to this property will trigger replacement.
string
The name of the NetApp account
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
groupMetaData VolumeGroupMetaData
Volume group details
location Changes to this property will trigger replacement. string
Resource location
volumeGroupName Changes to this property will trigger replacement. string
The name of the volumeGroup
volumes VolumeGroupVolumeProperties[]
List of volumes from group
account_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the NetApp account
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
group_meta_data VolumeGroupMetaDataArgs
Volume group details
location Changes to this property will trigger replacement. str
Resource location
volume_group_name Changes to this property will trigger replacement. str
The name of the volumeGroup
volumes Sequence[VolumeGroupVolumePropertiesArgs]
List of volumes from group
accountName
This property is required.
Changes to this property will trigger replacement.
String
The name of the NetApp account
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
groupMetaData Property Map
Volume group details
location Changes to this property will trigger replacement. String
Resource location
volumeGroupName Changes to this property will trigger replacement. String
The name of the volumeGroup
volumes List<Property Map>
List of volumes from group

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Name string
Resource name
ProvisioningState string
Azure lifecycle management
Type string
Resource type
Id string
The provider-assigned unique ID for this managed resource.
Name string
Resource name
ProvisioningState string
Azure lifecycle management
Type string
Resource type
id String
The provider-assigned unique ID for this managed resource.
name String
Resource name
provisioningState String
Azure lifecycle management
type String
Resource type
id string
The provider-assigned unique ID for this managed resource.
name string
Resource name
provisioningState string
Azure lifecycle management
type string
Resource type
id str
The provider-assigned unique ID for this managed resource.
name str
Resource name
provisioning_state str
Azure lifecycle management
type str
Resource type
id String
The provider-assigned unique ID for this managed resource.
name String
Resource name
provisioningState String
Azure lifecycle management
type String
Resource type

Supporting Types

ApplicationType
, ApplicationTypeArgs

SAP_HANA
SAP-HANA
ApplicationType_SAP_HANA
SAP-HANA
SAPHANA
SAP-HANA
SAP_HANA
SAP-HANA
SA_P_HANA
SAP-HANA
"SAP-HANA"
SAP-HANA

AvsDataStore
, AvsDataStoreArgs

Enabled
EnabledavsDataStore is enabled
Disabled
DisabledavsDataStore is disabled
AvsDataStoreEnabled
EnabledavsDataStore is enabled
AvsDataStoreDisabled
DisabledavsDataStore is disabled
Enabled
EnabledavsDataStore is enabled
Disabled
DisabledavsDataStore is disabled
Enabled
EnabledavsDataStore is enabled
Disabled
DisabledavsDataStore is disabled
ENABLED
EnabledavsDataStore is enabled
DISABLED
DisabledavsDataStore is disabled
"Enabled"
EnabledavsDataStore is enabled
"Disabled"
DisabledavsDataStore is disabled

ChownMode
, ChownModeArgs

Restricted
Restricted
Unrestricted
Unrestricted
ChownModeRestricted
Restricted
ChownModeUnrestricted
Unrestricted
Restricted
Restricted
Unrestricted
Unrestricted
Restricted
Restricted
Unrestricted
Unrestricted
RESTRICTED
Restricted
UNRESTRICTED
Unrestricted
"Restricted"
Restricted
"Unrestricted"
Unrestricted

EnableSubvolumes
, EnableSubvolumesArgs

Enabled
Enabledsubvolumes are enabled
Disabled
Disabledsubvolumes are not enabled
EnableSubvolumesEnabled
Enabledsubvolumes are enabled
EnableSubvolumesDisabled
Disabledsubvolumes are not enabled
Enabled
Enabledsubvolumes are enabled
Disabled
Disabledsubvolumes are not enabled
Enabled
Enabledsubvolumes are enabled
Disabled
Disabledsubvolumes are not enabled
ENABLED
Enabledsubvolumes are enabled
DISABLED
Disabledsubvolumes are not enabled
"Enabled"
Enabledsubvolumes are enabled
"Disabled"
Disabledsubvolumes are not enabled

EncryptionKeySource
, EncryptionKeySourceArgs

Microsoft_NetApp
Microsoft.NetAppMicrosoft-managed key encryption
Microsoft_KeyVault
Microsoft.KeyVaultCustomer-managed key encryption
EncryptionKeySource_Microsoft_NetApp
Microsoft.NetAppMicrosoft-managed key encryption
EncryptionKeySource_Microsoft_KeyVault
Microsoft.KeyVaultCustomer-managed key encryption
Microsoft_NetApp
Microsoft.NetAppMicrosoft-managed key encryption
Microsoft_KeyVault
Microsoft.KeyVaultCustomer-managed key encryption
Microsoft_NetApp
Microsoft.NetAppMicrosoft-managed key encryption
Microsoft_KeyVault
Microsoft.KeyVaultCustomer-managed key encryption
MICROSOFT_NET_APP
Microsoft.NetAppMicrosoft-managed key encryption
MICROSOFT_KEY_VAULT
Microsoft.KeyVaultCustomer-managed key encryption
"Microsoft.NetApp"
Microsoft.NetAppMicrosoft-managed key encryption
"Microsoft.KeyVault"
Microsoft.KeyVaultCustomer-managed key encryption

EndpointType
, EndpointTypeArgs

Src
src
Dst
dst
EndpointTypeSrc
src
EndpointTypeDst
dst
Src
src
Dst
dst
Src
src
Dst
dst
SRC
src
DST
dst
"src"
src
"dst"
dst

ExportPolicyRule
, ExportPolicyRuleArgs

AllowedClients string
Client ingress specification as comma separated string with IPv4 CIDRs, IPv4 host addresses and host names
ChownMode string | Pulumi.AzureNative.NetApp.ChownMode
This parameter specifies who is authorized to change the ownership of a file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root users can change ownership of files that they own.
Cifs bool
Allows CIFS protocol
HasRootAccess bool
Has root access to volume
Kerberos5ReadOnly bool
Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
Kerberos5ReadWrite bool
Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
Kerberos5iReadOnly bool
Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
Kerberos5iReadWrite bool
Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
Kerberos5pReadOnly bool
Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
Kerberos5pReadWrite bool
Kerberos5p Read and write access. To be use with swagger version 2020-05-01 or later
Nfsv3 bool
Allows NFSv3 protocol. Enable only for NFSv3 type volumes
Nfsv41 bool
Allows NFSv4.1 protocol. Enable only for NFSv4.1 type volumes
RuleIndex int
Order index
UnixReadOnly bool
Read only access
UnixReadWrite bool
Read and write access
AllowedClients string
Client ingress specification as comma separated string with IPv4 CIDRs, IPv4 host addresses and host names
ChownMode string | ChownMode
This parameter specifies who is authorized to change the ownership of a file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root users can change ownership of files that they own.
Cifs bool
Allows CIFS protocol
HasRootAccess bool
Has root access to volume
Kerberos5ReadOnly bool
Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
Kerberos5ReadWrite bool
Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
Kerberos5iReadOnly bool
Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
Kerberos5iReadWrite bool
Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
Kerberos5pReadOnly bool
Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
Kerberos5pReadWrite bool
Kerberos5p Read and write access. To be use with swagger version 2020-05-01 or later
Nfsv3 bool
Allows NFSv3 protocol. Enable only for NFSv3 type volumes
Nfsv41 bool
Allows NFSv4.1 protocol. Enable only for NFSv4.1 type volumes
RuleIndex int
Order index
UnixReadOnly bool
Read only access
UnixReadWrite bool
Read and write access
allowedClients String
Client ingress specification as comma separated string with IPv4 CIDRs, IPv4 host addresses and host names
chownMode String | ChownMode
This parameter specifies who is authorized to change the ownership of a file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root users can change ownership of files that they own.
cifs Boolean
Allows CIFS protocol
hasRootAccess Boolean
Has root access to volume
kerberos5ReadOnly Boolean
Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
kerberos5ReadWrite Boolean
Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
kerberos5iReadOnly Boolean
Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
kerberos5iReadWrite Boolean
Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
kerberos5pReadOnly Boolean
Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
kerberos5pReadWrite Boolean
Kerberos5p Read and write access. To be use with swagger version 2020-05-01 or later
nfsv3 Boolean
Allows NFSv3 protocol. Enable only for NFSv3 type volumes
nfsv41 Boolean
Allows NFSv4.1 protocol. Enable only for NFSv4.1 type volumes
ruleIndex Integer
Order index
unixReadOnly Boolean
Read only access
unixReadWrite Boolean
Read and write access
allowedClients string
Client ingress specification as comma separated string with IPv4 CIDRs, IPv4 host addresses and host names
chownMode string | ChownMode
This parameter specifies who is authorized to change the ownership of a file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root users can change ownership of files that they own.
cifs boolean
Allows CIFS protocol
hasRootAccess boolean
Has root access to volume
kerberos5ReadOnly boolean
Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
kerberos5ReadWrite boolean
Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
kerberos5iReadOnly boolean
Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
kerberos5iReadWrite boolean
Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
kerberos5pReadOnly boolean
Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
kerberos5pReadWrite boolean
Kerberos5p Read and write access. To be use with swagger version 2020-05-01 or later
nfsv3 boolean
Allows NFSv3 protocol. Enable only for NFSv3 type volumes
nfsv41 boolean
Allows NFSv4.1 protocol. Enable only for NFSv4.1 type volumes
ruleIndex number
Order index
unixReadOnly boolean
Read only access
unixReadWrite boolean
Read and write access
allowed_clients str
Client ingress specification as comma separated string with IPv4 CIDRs, IPv4 host addresses and host names
chown_mode str | ChownMode
This parameter specifies who is authorized to change the ownership of a file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root users can change ownership of files that they own.
cifs bool
Allows CIFS protocol
has_root_access bool
Has root access to volume
kerberos5_read_only bool
Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
kerberos5_read_write bool
Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
kerberos5i_read_only bool
Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
kerberos5i_read_write bool
Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
kerberos5p_read_only bool
Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
kerberos5p_read_write bool
Kerberos5p Read and write access. To be use with swagger version 2020-05-01 or later
nfsv3 bool
Allows NFSv3 protocol. Enable only for NFSv3 type volumes
nfsv41 bool
Allows NFSv4.1 protocol. Enable only for NFSv4.1 type volumes
rule_index int
Order index
unix_read_only bool
Read only access
unix_read_write bool
Read and write access
allowedClients String
Client ingress specification as comma separated string with IPv4 CIDRs, IPv4 host addresses and host names
chownMode String | "Restricted" | "Unrestricted"
This parameter specifies who is authorized to change the ownership of a file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root users can change ownership of files that they own.
cifs Boolean
Allows CIFS protocol
hasRootAccess Boolean
Has root access to volume
kerberos5ReadOnly Boolean
Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
kerberos5ReadWrite Boolean
Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
kerberos5iReadOnly Boolean
Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
kerberos5iReadWrite Boolean
Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
kerberos5pReadOnly Boolean
Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
kerberos5pReadWrite Boolean
Kerberos5p Read and write access. To be use with swagger version 2020-05-01 or later
nfsv3 Boolean
Allows NFSv3 protocol. Enable only for NFSv3 type volumes
nfsv41 Boolean
Allows NFSv4.1 protocol. Enable only for NFSv4.1 type volumes
ruleIndex Number
Order index
unixReadOnly Boolean
Read only access
unixReadWrite Boolean
Read and write access

ExportPolicyRuleResponse
, ExportPolicyRuleResponseArgs

AllowedClients string
Client ingress specification as comma separated string with IPv4 CIDRs, IPv4 host addresses and host names
ChownMode string
This parameter specifies who is authorized to change the ownership of a file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root users can change ownership of files that they own.
Cifs bool
Allows CIFS protocol
HasRootAccess bool
Has root access to volume
Kerberos5ReadOnly bool
Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
Kerberos5ReadWrite bool
Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
Kerberos5iReadOnly bool
Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
Kerberos5iReadWrite bool
Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
Kerberos5pReadOnly bool
Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
Kerberos5pReadWrite bool
Kerberos5p Read and write access. To be use with swagger version 2020-05-01 or later
Nfsv3 bool
Allows NFSv3 protocol. Enable only for NFSv3 type volumes
Nfsv41 bool
Allows NFSv4.1 protocol. Enable only for NFSv4.1 type volumes
RuleIndex int
Order index
UnixReadOnly bool
Read only access
UnixReadWrite bool
Read and write access
AllowedClients string
Client ingress specification as comma separated string with IPv4 CIDRs, IPv4 host addresses and host names
ChownMode string
This parameter specifies who is authorized to change the ownership of a file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root users can change ownership of files that they own.
Cifs bool
Allows CIFS protocol
HasRootAccess bool
Has root access to volume
Kerberos5ReadOnly bool
Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
Kerberos5ReadWrite bool
Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
Kerberos5iReadOnly bool
Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
Kerberos5iReadWrite bool
Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
Kerberos5pReadOnly bool
Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
Kerberos5pReadWrite bool
Kerberos5p Read and write access. To be use with swagger version 2020-05-01 or later
Nfsv3 bool
Allows NFSv3 protocol. Enable only for NFSv3 type volumes
Nfsv41 bool
Allows NFSv4.1 protocol. Enable only for NFSv4.1 type volumes
RuleIndex int
Order index
UnixReadOnly bool
Read only access
UnixReadWrite bool
Read and write access
allowedClients String
Client ingress specification as comma separated string with IPv4 CIDRs, IPv4 host addresses and host names
chownMode String
This parameter specifies who is authorized to change the ownership of a file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root users can change ownership of files that they own.
cifs Boolean
Allows CIFS protocol
hasRootAccess Boolean
Has root access to volume
kerberos5ReadOnly Boolean
Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
kerberos5ReadWrite Boolean
Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
kerberos5iReadOnly Boolean
Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
kerberos5iReadWrite Boolean
Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
kerberos5pReadOnly Boolean
Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
kerberos5pReadWrite Boolean
Kerberos5p Read and write access. To be use with swagger version 2020-05-01 or later
nfsv3 Boolean
Allows NFSv3 protocol. Enable only for NFSv3 type volumes
nfsv41 Boolean
Allows NFSv4.1 protocol. Enable only for NFSv4.1 type volumes
ruleIndex Integer
Order index
unixReadOnly Boolean
Read only access
unixReadWrite Boolean
Read and write access
allowedClients string
Client ingress specification as comma separated string with IPv4 CIDRs, IPv4 host addresses and host names
chownMode string
This parameter specifies who is authorized to change the ownership of a file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root users can change ownership of files that they own.
cifs boolean
Allows CIFS protocol
hasRootAccess boolean
Has root access to volume
kerberos5ReadOnly boolean
Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
kerberos5ReadWrite boolean
Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
kerberos5iReadOnly boolean
Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
kerberos5iReadWrite boolean
Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
kerberos5pReadOnly boolean
Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
kerberos5pReadWrite boolean
Kerberos5p Read and write access. To be use with swagger version 2020-05-01 or later
nfsv3 boolean
Allows NFSv3 protocol. Enable only for NFSv3 type volumes
nfsv41 boolean
Allows NFSv4.1 protocol. Enable only for NFSv4.1 type volumes
ruleIndex number
Order index
unixReadOnly boolean
Read only access
unixReadWrite boolean
Read and write access
allowed_clients str
Client ingress specification as comma separated string with IPv4 CIDRs, IPv4 host addresses and host names
chown_mode str
This parameter specifies who is authorized to change the ownership of a file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root users can change ownership of files that they own.
cifs bool
Allows CIFS protocol
has_root_access bool
Has root access to volume
kerberos5_read_only bool
Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
kerberos5_read_write bool
Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
kerberos5i_read_only bool
Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
kerberos5i_read_write bool
Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
kerberos5p_read_only bool
Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
kerberos5p_read_write bool
Kerberos5p Read and write access. To be use with swagger version 2020-05-01 or later
nfsv3 bool
Allows NFSv3 protocol. Enable only for NFSv3 type volumes
nfsv41 bool
Allows NFSv4.1 protocol. Enable only for NFSv4.1 type volumes
rule_index int
Order index
unix_read_only bool
Read only access
unix_read_write bool
Read and write access
allowedClients String
Client ingress specification as comma separated string with IPv4 CIDRs, IPv4 host addresses and host names
chownMode String
This parameter specifies who is authorized to change the ownership of a file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root users can change ownership of files that they own.
cifs Boolean
Allows CIFS protocol
hasRootAccess Boolean
Has root access to volume
kerberos5ReadOnly Boolean
Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
kerberos5ReadWrite Boolean
Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
kerberos5iReadOnly Boolean
Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
kerberos5iReadWrite Boolean
Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
kerberos5pReadOnly Boolean
Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
kerberos5pReadWrite Boolean
Kerberos5p Read and write access. To be use with swagger version 2020-05-01 or later
nfsv3 Boolean
Allows NFSv3 protocol. Enable only for NFSv3 type volumes
nfsv41 Boolean
Allows NFSv4.1 protocol. Enable only for NFSv4.1 type volumes
ruleIndex Number
Order index
unixReadOnly Boolean
Read only access
unixReadWrite Boolean
Read and write access

MountTargetPropertiesResponse
, MountTargetPropertiesResponseArgs

FileSystemId This property is required. string
UUID v4 used to identify the MountTarget
IpAddress This property is required. string
The mount target's IPv4 address
MountTargetId This property is required. string
UUID v4 used to identify the MountTarget
SmbServerFqdn string
The SMB server's Fully Qualified Domain Name, FQDN
FileSystemId This property is required. string
UUID v4 used to identify the MountTarget
IpAddress This property is required. string
The mount target's IPv4 address
MountTargetId This property is required. string
UUID v4 used to identify the MountTarget
SmbServerFqdn string
The SMB server's Fully Qualified Domain Name, FQDN
fileSystemId This property is required. String
UUID v4 used to identify the MountTarget
ipAddress This property is required. String
The mount target's IPv4 address
mountTargetId This property is required. String
UUID v4 used to identify the MountTarget
smbServerFqdn String
The SMB server's Fully Qualified Domain Name, FQDN
fileSystemId This property is required. string
UUID v4 used to identify the MountTarget
ipAddress This property is required. string
The mount target's IPv4 address
mountTargetId This property is required. string
UUID v4 used to identify the MountTarget
smbServerFqdn string
The SMB server's Fully Qualified Domain Name, FQDN
file_system_id This property is required. str
UUID v4 used to identify the MountTarget
ip_address This property is required. str
The mount target's IPv4 address
mount_target_id This property is required. str
UUID v4 used to identify the MountTarget
smb_server_fqdn str
The SMB server's Fully Qualified Domain Name, FQDN
fileSystemId This property is required. String
UUID v4 used to identify the MountTarget
ipAddress This property is required. String
The mount target's IPv4 address
mountTargetId This property is required. String
UUID v4 used to identify the MountTarget
smbServerFqdn String
The SMB server's Fully Qualified Domain Name, FQDN

NetworkFeatures
, NetworkFeaturesArgs

Basic
BasicBasic network feature.
Standard
StandardStandard network feature.
NetworkFeaturesBasic
BasicBasic network feature.
NetworkFeaturesStandard
StandardStandard network feature.
Basic
BasicBasic network feature.
Standard
StandardStandard network feature.
Basic
BasicBasic network feature.
Standard
StandardStandard network feature.
BASIC
BasicBasic network feature.
STANDARD
StandardStandard network feature.
"Basic"
BasicBasic network feature.
"Standard"
StandardStandard network feature.

PlacementKeyValuePairs
, PlacementKeyValuePairsArgs

Key This property is required. string
Key for an application specific parameter for the placement of volumes in the volume group
Value This property is required. string
Value for an application specific parameter for the placement of volumes in the volume group
Key This property is required. string
Key for an application specific parameter for the placement of volumes in the volume group
Value This property is required. string
Value for an application specific parameter for the placement of volumes in the volume group
key This property is required. String
Key for an application specific parameter for the placement of volumes in the volume group
value This property is required. String
Value for an application specific parameter for the placement of volumes in the volume group
key This property is required. string
Key for an application specific parameter for the placement of volumes in the volume group
value This property is required. string
Value for an application specific parameter for the placement of volumes in the volume group
key This property is required. str
Key for an application specific parameter for the placement of volumes in the volume group
value This property is required. str
Value for an application specific parameter for the placement of volumes in the volume group
key This property is required. String
Key for an application specific parameter for the placement of volumes in the volume group
value This property is required. String
Value for an application specific parameter for the placement of volumes in the volume group

PlacementKeyValuePairsResponse
, PlacementKeyValuePairsResponseArgs

Key This property is required. string
Key for an application specific parameter for the placement of volumes in the volume group
Value This property is required. string
Value for an application specific parameter for the placement of volumes in the volume group
Key This property is required. string
Key for an application specific parameter for the placement of volumes in the volume group
Value This property is required. string
Value for an application specific parameter for the placement of volumes in the volume group
key This property is required. String
Key for an application specific parameter for the placement of volumes in the volume group
value This property is required. String
Value for an application specific parameter for the placement of volumes in the volume group
key This property is required. string
Key for an application specific parameter for the placement of volumes in the volume group
value This property is required. string
Value for an application specific parameter for the placement of volumes in the volume group
key This property is required. str
Key for an application specific parameter for the placement of volumes in the volume group
value This property is required. str
Value for an application specific parameter for the placement of volumes in the volume group
key This property is required. String
Key for an application specific parameter for the placement of volumes in the volume group
value This property is required. String
Value for an application specific parameter for the placement of volumes in the volume group

ReplicationObject
, ReplicationObjectArgs

RemoteVolumeResourceId This property is required. string
The resource ID of the remote volume.
EndpointType string | Pulumi.AzureNative.NetApp.EndpointType
Indicates whether the local volume is the source or destination for the Volume Replication
RemoteVolumeRegion string
The remote region for the other end of the Volume Replication.
ReplicationId string
Id
ReplicationSchedule string | Pulumi.AzureNative.NetApp.ReplicationSchedule
Schedule
RemoteVolumeResourceId This property is required. string
The resource ID of the remote volume.
EndpointType string | EndpointType
Indicates whether the local volume is the source or destination for the Volume Replication
RemoteVolumeRegion string
The remote region for the other end of the Volume Replication.
ReplicationId string
Id
ReplicationSchedule string | ReplicationSchedule
Schedule
remoteVolumeResourceId This property is required. String
The resource ID of the remote volume.
endpointType String | EndpointType
Indicates whether the local volume is the source or destination for the Volume Replication
remoteVolumeRegion String
The remote region for the other end of the Volume Replication.
replicationId String
Id
replicationSchedule String | ReplicationSchedule
Schedule
remoteVolumeResourceId This property is required. string
The resource ID of the remote volume.
endpointType string | EndpointType
Indicates whether the local volume is the source or destination for the Volume Replication
remoteVolumeRegion string
The remote region for the other end of the Volume Replication.
replicationId string
Id
replicationSchedule string | ReplicationSchedule
Schedule
remote_volume_resource_id This property is required. str
The resource ID of the remote volume.
endpoint_type str | EndpointType
Indicates whether the local volume is the source or destination for the Volume Replication
remote_volume_region str
The remote region for the other end of the Volume Replication.
replication_id str
Id
replication_schedule str | ReplicationSchedule
Schedule
remoteVolumeResourceId This property is required. String
The resource ID of the remote volume.
endpointType String | "src" | "dst"
Indicates whether the local volume is the source or destination for the Volume Replication
remoteVolumeRegion String
The remote region for the other end of the Volume Replication.
replicationId String
Id
replicationSchedule String | "_10minutely" | "hourly" | "daily"
Schedule

ReplicationObjectResponse
, ReplicationObjectResponseArgs

RemoteVolumeResourceId This property is required. string
The resource ID of the remote volume.
EndpointType string
Indicates whether the local volume is the source or destination for the Volume Replication
RemoteVolumeRegion string
The remote region for the other end of the Volume Replication.
ReplicationId string
Id
ReplicationSchedule string
Schedule
RemoteVolumeResourceId This property is required. string
The resource ID of the remote volume.
EndpointType string
Indicates whether the local volume is the source or destination for the Volume Replication
RemoteVolumeRegion string
The remote region for the other end of the Volume Replication.
ReplicationId string
Id
ReplicationSchedule string
Schedule
remoteVolumeResourceId This property is required. String
The resource ID of the remote volume.
endpointType String
Indicates whether the local volume is the source or destination for the Volume Replication
remoteVolumeRegion String
The remote region for the other end of the Volume Replication.
replicationId String
Id
replicationSchedule String
Schedule
remoteVolumeResourceId This property is required. string
The resource ID of the remote volume.
endpointType string
Indicates whether the local volume is the source or destination for the Volume Replication
remoteVolumeRegion string
The remote region for the other end of the Volume Replication.
replicationId string
Id
replicationSchedule string
Schedule
remote_volume_resource_id This property is required. str
The resource ID of the remote volume.
endpoint_type str
Indicates whether the local volume is the source or destination for the Volume Replication
remote_volume_region str
The remote region for the other end of the Volume Replication.
replication_id str
Id
replication_schedule str
Schedule
remoteVolumeResourceId This property is required. String
The resource ID of the remote volume.
endpointType String
Indicates whether the local volume is the source or destination for the Volume Replication
remoteVolumeRegion String
The remote region for the other end of the Volume Replication.
replicationId String
Id
replicationSchedule String
Schedule

ReplicationSchedule
, ReplicationScheduleArgs

ReplicationSchedule_10minutely
_10minutely
Hourly
hourly
Daily
daily
ReplicationSchedule_10minutely
_10minutely
ReplicationScheduleHourly
hourly
ReplicationScheduleDaily
daily
_10minutely
_10minutely
Hourly
hourly
Daily
daily
ReplicationSchedule_10minutely
_10minutely
Hourly
hourly
Daily
daily
REPLICATION_SCHEDULE_10MINUTELY
_10minutely
HOURLY
hourly
DAILY
daily
"_10minutely"
_10minutely
"hourly"
hourly
"daily"
daily

SecurityStyle
, SecurityStyleArgs

Ntfs
ntfs
Unix
unix
SecurityStyleNtfs
ntfs
SecurityStyleUnix
unix
Ntfs
ntfs
Unix
unix
Ntfs
ntfs
Unix
unix
NTFS
ntfs
UNIX
unix
"ntfs"
ntfs
"unix"
unix

ServiceLevel
, ServiceLevelArgs

Standard
StandardStandard service level
Premium
PremiumPremium service level
Ultra
UltraUltra service level
StandardZRS
StandardZRSZone redundant storage service level
ServiceLevelStandard
StandardStandard service level
ServiceLevelPremium
PremiumPremium service level
ServiceLevelUltra
UltraUltra service level
ServiceLevelStandardZRS
StandardZRSZone redundant storage service level
Standard
StandardStandard service level
Premium
PremiumPremium service level
Ultra
UltraUltra service level
StandardZRS
StandardZRSZone redundant storage service level
Standard
StandardStandard service level
Premium
PremiumPremium service level
Ultra
UltraUltra service level
StandardZRS
StandardZRSZone redundant storage service level
STANDARD
StandardStandard service level
PREMIUM
PremiumPremium service level
ULTRA
UltraUltra service level
STANDARD_ZRS
StandardZRSZone redundant storage service level
"Standard"
StandardStandard service level
"Premium"
PremiumPremium service level
"Ultra"
UltraUltra service level
"StandardZRS"
StandardZRSZone redundant storage service level

SmbAccessBasedEnumeration
, SmbAccessBasedEnumerationArgs

Disabled
DisabledsmbAccessBasedEnumeration share setting is disabled
Enabled
EnabledsmbAccessBasedEnumeration share setting is enabled
SmbAccessBasedEnumerationDisabled
DisabledsmbAccessBasedEnumeration share setting is disabled
SmbAccessBasedEnumerationEnabled
EnabledsmbAccessBasedEnumeration share setting is enabled
Disabled
DisabledsmbAccessBasedEnumeration share setting is disabled
Enabled
EnabledsmbAccessBasedEnumeration share setting is enabled
Disabled
DisabledsmbAccessBasedEnumeration share setting is disabled
Enabled
EnabledsmbAccessBasedEnumeration share setting is enabled
DISABLED
DisabledsmbAccessBasedEnumeration share setting is disabled
ENABLED
EnabledsmbAccessBasedEnumeration share setting is enabled
"Disabled"
DisabledsmbAccessBasedEnumeration share setting is disabled
"Enabled"
EnabledsmbAccessBasedEnumeration share setting is enabled

SmbNonBrowsable
, SmbNonBrowsableArgs

Disabled
DisabledsmbNonBrowsable share setting is disabled
Enabled
EnabledsmbNonBrowsable share setting is enabled
SmbNonBrowsableDisabled
DisabledsmbNonBrowsable share setting is disabled
SmbNonBrowsableEnabled
EnabledsmbNonBrowsable share setting is enabled
Disabled
DisabledsmbNonBrowsable share setting is disabled
Enabled
EnabledsmbNonBrowsable share setting is enabled
Disabled
DisabledsmbNonBrowsable share setting is disabled
Enabled
EnabledsmbNonBrowsable share setting is enabled
DISABLED
DisabledsmbNonBrowsable share setting is disabled
ENABLED
EnabledsmbNonBrowsable share setting is enabled
"Disabled"
DisabledsmbNonBrowsable share setting is disabled
"Enabled"
EnabledsmbNonBrowsable share setting is enabled

VolumeBackupProperties
, VolumeBackupPropertiesArgs

BackupEnabled bool
Backup Enabled
BackupPolicyId string
Backup Policy Resource ID
PolicyEnforced bool
Policy Enforced
BackupEnabled bool
Backup Enabled
BackupPolicyId string
Backup Policy Resource ID
PolicyEnforced bool
Policy Enforced
backupEnabled Boolean
Backup Enabled
backupPolicyId String
Backup Policy Resource ID
policyEnforced Boolean
Policy Enforced
backupEnabled boolean
Backup Enabled
backupPolicyId string
Backup Policy Resource ID
policyEnforced boolean
Policy Enforced
backup_enabled bool
Backup Enabled
backup_policy_id str
Backup Policy Resource ID
policy_enforced bool
Policy Enforced
backupEnabled Boolean
Backup Enabled
backupPolicyId String
Backup Policy Resource ID
policyEnforced Boolean
Policy Enforced

VolumeBackupPropertiesResponse
, VolumeBackupPropertiesResponseArgs

BackupEnabled bool
Backup Enabled
BackupPolicyId string
Backup Policy Resource ID
PolicyEnforced bool
Policy Enforced
BackupEnabled bool
Backup Enabled
BackupPolicyId string
Backup Policy Resource ID
PolicyEnforced bool
Policy Enforced
backupEnabled Boolean
Backup Enabled
backupPolicyId String
Backup Policy Resource ID
policyEnforced Boolean
Policy Enforced
backupEnabled boolean
Backup Enabled
backupPolicyId string
Backup Policy Resource ID
policyEnforced boolean
Policy Enforced
backup_enabled bool
Backup Enabled
backup_policy_id str
Backup Policy Resource ID
policy_enforced bool
Policy Enforced
backupEnabled Boolean
Backup Enabled
backupPolicyId String
Backup Policy Resource ID
policyEnforced Boolean
Policy Enforced

VolumeGroupMetaData
, VolumeGroupMetaDataArgs

ApplicationIdentifier string
Application specific identifier
ApplicationType string | Pulumi.AzureNative.NetApp.ApplicationType
Application Type
DeploymentSpecId string
Application specific identifier of deployment rules for the volume group
GlobalPlacementRules List<Pulumi.AzureNative.NetApp.Inputs.PlacementKeyValuePairs>
Application specific placement rules for the volume group
GroupDescription string
Group Description
ApplicationIdentifier string
Application specific identifier
ApplicationType string | ApplicationType
Application Type
DeploymentSpecId string
Application specific identifier of deployment rules for the volume group
GlobalPlacementRules []PlacementKeyValuePairs
Application specific placement rules for the volume group
GroupDescription string
Group Description
applicationIdentifier String
Application specific identifier
applicationType String | ApplicationType
Application Type
deploymentSpecId String
Application specific identifier of deployment rules for the volume group
globalPlacementRules List<PlacementKeyValuePairs>
Application specific placement rules for the volume group
groupDescription String
Group Description
applicationIdentifier string
Application specific identifier
applicationType string | ApplicationType
Application Type
deploymentSpecId string
Application specific identifier of deployment rules for the volume group
globalPlacementRules PlacementKeyValuePairs[]
Application specific placement rules for the volume group
groupDescription string
Group Description
application_identifier str
Application specific identifier
application_type str | ApplicationType
Application Type
deployment_spec_id str
Application specific identifier of deployment rules for the volume group
global_placement_rules Sequence[PlacementKeyValuePairs]
Application specific placement rules for the volume group
group_description str
Group Description
applicationIdentifier String
Application specific identifier
applicationType String | "SAP-HANA"
Application Type
deploymentSpecId String
Application specific identifier of deployment rules for the volume group
globalPlacementRules List<Property Map>
Application specific placement rules for the volume group
groupDescription String
Group Description

VolumeGroupMetaDataResponse
, VolumeGroupMetaDataResponseArgs

VolumesCount This property is required. double
Number of volumes in volume group
ApplicationIdentifier string
Application specific identifier
ApplicationType string
Application Type
DeploymentSpecId string
Application specific identifier of deployment rules for the volume group
GlobalPlacementRules List<Pulumi.AzureNative.NetApp.Inputs.PlacementKeyValuePairsResponse>
Application specific placement rules for the volume group
GroupDescription string
Group Description
VolumesCount This property is required. float64
Number of volumes in volume group
ApplicationIdentifier string
Application specific identifier
ApplicationType string
Application Type
DeploymentSpecId string
Application specific identifier of deployment rules for the volume group
GlobalPlacementRules []PlacementKeyValuePairsResponse
Application specific placement rules for the volume group
GroupDescription string
Group Description
volumesCount This property is required. Double
Number of volumes in volume group
applicationIdentifier String
Application specific identifier
applicationType String
Application Type
deploymentSpecId String
Application specific identifier of deployment rules for the volume group
globalPlacementRules List<PlacementKeyValuePairsResponse>
Application specific placement rules for the volume group
groupDescription String
Group Description
volumesCount This property is required. number
Number of volumes in volume group
applicationIdentifier string
Application specific identifier
applicationType string
Application Type
deploymentSpecId string
Application specific identifier of deployment rules for the volume group
globalPlacementRules PlacementKeyValuePairsResponse[]
Application specific placement rules for the volume group
groupDescription string
Group Description
volumes_count This property is required. float
Number of volumes in volume group
application_identifier str
Application specific identifier
application_type str
Application Type
deployment_spec_id str
Application specific identifier of deployment rules for the volume group
global_placement_rules Sequence[PlacementKeyValuePairsResponse]
Application specific placement rules for the volume group
group_description str
Group Description
volumesCount This property is required. Number
Number of volumes in volume group
applicationIdentifier String
Application specific identifier
applicationType String
Application Type
deploymentSpecId String
Application specific identifier of deployment rules for the volume group
globalPlacementRules List<Property Map>
Application specific placement rules for the volume group
groupDescription String
Group Description

VolumeGroupVolumeProperties
, VolumeGroupVolumePropertiesArgs

CreationToken This property is required. string
A unique file path for the volume. Used when creating mount targets
SubnetId This property is required. string
The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes
UsageThreshold This property is required. double
Maximum storage quota allowed for a file system in bytes. This is a soft quota used for alerting only. Minimum size is 100 GiB. Upper limit is 100TiB, 500Tib for LargeVolume. Specified in bytes.
AvsDataStore string | Pulumi.AzureNative.NetApp.AvsDataStore
Specifies whether the volume is enabled for Azure VMware Solution (AVS) datastore purpose
BackupId string
UUID v4 or resource identifier used to identify the Backup.
CapacityPoolResourceId string
Pool Resource Id used in case of creating a volume through volume group
CoolAccess bool
Specifies whether Cool Access(tiering) is enabled for the volume.
CoolnessPeriod int
Specifies the number of days after which data that is not accessed by clients will be tiered.
DataProtection Pulumi.AzureNative.NetApp.Inputs.VolumePropertiesDataProtection
DataProtection type volumes include an object containing details of the replication
DefaultGroupQuotaInKiBs double
Default group quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies.
DefaultUserQuotaInKiBs double
Default user quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies .
DeleteBaseSnapshot bool
If enabled (true) the snapshot the volume was created from will be automatically deleted after the volume create operation has finished. Defaults to false
EnableSubvolumes string | Pulumi.AzureNative.NetApp.EnableSubvolumes
Flag indicating whether subvolume operations are enabled on the volume
EncryptionKeySource string | Pulumi.AzureNative.NetApp.EncryptionKeySource
Source of key used to encrypt data in volume. Applicable if NetApp account has encryption.keySource = 'Microsoft.KeyVault'. Possible values (case-insensitive) are: 'Microsoft.NetApp, Microsoft.KeyVault'
ExportPolicy Pulumi.AzureNative.NetApp.Inputs.VolumePropertiesExportPolicy
Set of export policy rules
IsDefaultQuotaEnabled bool
Specifies if default quota is enabled for the volume.
IsLargeVolume bool
Specifies whether volume is a Large Volume or Regular Volume.
IsRestoring bool
Restoring
KerberosEnabled bool
Describe if a volume is KerberosEnabled. To be use with swagger version 2020-05-01 or later
KeyVaultPrivateEndpointResourceId string
The resource ID of private endpoint for KeyVault. It must reside in the same VNET as the volume. Only applicable if encryptionKeySource = 'Microsoft.KeyVault'.
LdapEnabled bool
Specifies whether LDAP is enabled or not for a given NFS volume.
Name string
Resource name
NetworkFeatures string | Pulumi.AzureNative.NetApp.NetworkFeatures
Basic network, or Standard features available to the volume.
PlacementRules List<Pulumi.AzureNative.NetApp.Inputs.PlacementKeyValuePairs>
Application specific placement rules for the particular volume
ProtocolTypes List<string>
Set of protocol types, default NFSv3, CIFS for SMB protocol
ProximityPlacementGroup string
Proximity placement group associated with the volume
SecurityStyle string | Pulumi.AzureNative.NetApp.SecurityStyle
The security style of volume, default unix, defaults to ntfs for dual protocol or CIFS protocol
ServiceLevel string | Pulumi.AzureNative.NetApp.ServiceLevel
The service level of the file system
SmbAccessBasedEnumeration string | Pulumi.AzureNative.NetApp.SmbAccessBasedEnumeration
Enables access based enumeration share property for SMB Shares. Only applicable for SMB/DualProtocol volume
SmbContinuouslyAvailable bool
Enables continuously available share property for smb volume. Only applicable for SMB volume
SmbEncryption bool
Enables encryption for in-flight smb3 data. Only applicable for SMB/DualProtocol volume. To be used with swagger version 2020-08-01 or later
SmbNonBrowsable string | Pulumi.AzureNative.NetApp.SmbNonBrowsable
Enables non browsable property for SMB Shares. Only applicable for SMB/DualProtocol volume
SnapshotDirectoryVisible bool
If enabled (true) the volume will contain a read-only snapshot directory which provides access to each of the volume's snapshots (defaults to true).
SnapshotId string
UUID v4 or resource identifier used to identify the Snapshot.
Tags Dictionary<string, string>
Resource tags
ThroughputMibps double
UnixPermissions string
UNIX permissions for NFS volume accepted in octal 4 digit format. First digit selects the set user ID(4), set group ID (2) and sticky (1) attributes. Second digit selects permission for the owner of the file: read (4), write (2) and execute (1). Third selects permissions for other users in the same group. the fourth for other users not in the group. 0755 - gives read/write/execute permissions to owner and read/execute to group and other users.
VolumeSpecName string
Volume spec name is the application specific designation or identifier for the particular volume in a volume group for e.g. data, log
VolumeType string
What type of volume is this. For destination volumes in Cross Region Replication, set type to DataProtection
CreationToken This property is required. string
A unique file path for the volume. Used when creating mount targets
SubnetId This property is required. string
The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes
UsageThreshold This property is required. float64
Maximum storage quota allowed for a file system in bytes. This is a soft quota used for alerting only. Minimum size is 100 GiB. Upper limit is 100TiB, 500Tib for LargeVolume. Specified in bytes.
AvsDataStore string | AvsDataStore
Specifies whether the volume is enabled for Azure VMware Solution (AVS) datastore purpose
BackupId string
UUID v4 or resource identifier used to identify the Backup.
CapacityPoolResourceId string
Pool Resource Id used in case of creating a volume through volume group
CoolAccess bool
Specifies whether Cool Access(tiering) is enabled for the volume.
CoolnessPeriod int
Specifies the number of days after which data that is not accessed by clients will be tiered.
DataProtection VolumePropertiesDataProtection
DataProtection type volumes include an object containing details of the replication
DefaultGroupQuotaInKiBs float64
Default group quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies.
DefaultUserQuotaInKiBs float64
Default user quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies .
DeleteBaseSnapshot bool
If enabled (true) the snapshot the volume was created from will be automatically deleted after the volume create operation has finished. Defaults to false
EnableSubvolumes string | EnableSubvolumes
Flag indicating whether subvolume operations are enabled on the volume
EncryptionKeySource string | EncryptionKeySource
Source of key used to encrypt data in volume. Applicable if NetApp account has encryption.keySource = 'Microsoft.KeyVault'. Possible values (case-insensitive) are: 'Microsoft.NetApp, Microsoft.KeyVault'
ExportPolicy VolumePropertiesExportPolicy
Set of export policy rules
IsDefaultQuotaEnabled bool
Specifies if default quota is enabled for the volume.
IsLargeVolume bool
Specifies whether volume is a Large Volume or Regular Volume.
IsRestoring bool
Restoring
KerberosEnabled bool
Describe if a volume is KerberosEnabled. To be use with swagger version 2020-05-01 or later
KeyVaultPrivateEndpointResourceId string
The resource ID of private endpoint for KeyVault. It must reside in the same VNET as the volume. Only applicable if encryptionKeySource = 'Microsoft.KeyVault'.
LdapEnabled bool
Specifies whether LDAP is enabled or not for a given NFS volume.
Name string
Resource name
NetworkFeatures string | NetworkFeatures
Basic network, or Standard features available to the volume.
PlacementRules []PlacementKeyValuePairs
Application specific placement rules for the particular volume
ProtocolTypes []string
Set of protocol types, default NFSv3, CIFS for SMB protocol
ProximityPlacementGroup string
Proximity placement group associated with the volume
SecurityStyle string | SecurityStyle
The security style of volume, default unix, defaults to ntfs for dual protocol or CIFS protocol
ServiceLevel string | ServiceLevel
The service level of the file system
SmbAccessBasedEnumeration string | SmbAccessBasedEnumeration
Enables access based enumeration share property for SMB Shares. Only applicable for SMB/DualProtocol volume
SmbContinuouslyAvailable bool
Enables continuously available share property for smb volume. Only applicable for SMB volume
SmbEncryption bool
Enables encryption for in-flight smb3 data. Only applicable for SMB/DualProtocol volume. To be used with swagger version 2020-08-01 or later
SmbNonBrowsable string | SmbNonBrowsable
Enables non browsable property for SMB Shares. Only applicable for SMB/DualProtocol volume
SnapshotDirectoryVisible bool
If enabled (true) the volume will contain a read-only snapshot directory which provides access to each of the volume's snapshots (defaults to true).
SnapshotId string
UUID v4 or resource identifier used to identify the Snapshot.
Tags map[string]string
Resource tags
ThroughputMibps float64
UnixPermissions string
UNIX permissions for NFS volume accepted in octal 4 digit format. First digit selects the set user ID(4), set group ID (2) and sticky (1) attributes. Second digit selects permission for the owner of the file: read (4), write (2) and execute (1). Third selects permissions for other users in the same group. the fourth for other users not in the group. 0755 - gives read/write/execute permissions to owner and read/execute to group and other users.
VolumeSpecName string
Volume spec name is the application specific designation or identifier for the particular volume in a volume group for e.g. data, log
VolumeType string
What type of volume is this. For destination volumes in Cross Region Replication, set type to DataProtection
creationToken This property is required. String
A unique file path for the volume. Used when creating mount targets
subnetId This property is required. String
The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes
usageThreshold This property is required. Double
Maximum storage quota allowed for a file system in bytes. This is a soft quota used for alerting only. Minimum size is 100 GiB. Upper limit is 100TiB, 500Tib for LargeVolume. Specified in bytes.
avsDataStore String | AvsDataStore
Specifies whether the volume is enabled for Azure VMware Solution (AVS) datastore purpose
backupId String
UUID v4 or resource identifier used to identify the Backup.
capacityPoolResourceId String
Pool Resource Id used in case of creating a volume through volume group
coolAccess Boolean
Specifies whether Cool Access(tiering) is enabled for the volume.
coolnessPeriod Integer
Specifies the number of days after which data that is not accessed by clients will be tiered.
dataProtection VolumePropertiesDataProtection
DataProtection type volumes include an object containing details of the replication
defaultGroupQuotaInKiBs Double
Default group quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies.
defaultUserQuotaInKiBs Double
Default user quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies .
deleteBaseSnapshot Boolean
If enabled (true) the snapshot the volume was created from will be automatically deleted after the volume create operation has finished. Defaults to false
enableSubvolumes String | EnableSubvolumes
Flag indicating whether subvolume operations are enabled on the volume
encryptionKeySource String | EncryptionKeySource
Source of key used to encrypt data in volume. Applicable if NetApp account has encryption.keySource = 'Microsoft.KeyVault'. Possible values (case-insensitive) are: 'Microsoft.NetApp, Microsoft.KeyVault'
exportPolicy VolumePropertiesExportPolicy
Set of export policy rules
isDefaultQuotaEnabled Boolean
Specifies if default quota is enabled for the volume.
isLargeVolume Boolean
Specifies whether volume is a Large Volume or Regular Volume.
isRestoring Boolean
Restoring
kerberosEnabled Boolean
Describe if a volume is KerberosEnabled. To be use with swagger version 2020-05-01 or later
keyVaultPrivateEndpointResourceId String
The resource ID of private endpoint for KeyVault. It must reside in the same VNET as the volume. Only applicable if encryptionKeySource = 'Microsoft.KeyVault'.
ldapEnabled Boolean
Specifies whether LDAP is enabled or not for a given NFS volume.
name String
Resource name
networkFeatures String | NetworkFeatures
Basic network, or Standard features available to the volume.
placementRules List<PlacementKeyValuePairs>
Application specific placement rules for the particular volume
protocolTypes List<String>
Set of protocol types, default NFSv3, CIFS for SMB protocol
proximityPlacementGroup String
Proximity placement group associated with the volume
securityStyle String | SecurityStyle
The security style of volume, default unix, defaults to ntfs for dual protocol or CIFS protocol
serviceLevel String | ServiceLevel
The service level of the file system
smbAccessBasedEnumeration String | SmbAccessBasedEnumeration
Enables access based enumeration share property for SMB Shares. Only applicable for SMB/DualProtocol volume
smbContinuouslyAvailable Boolean
Enables continuously available share property for smb volume. Only applicable for SMB volume
smbEncryption Boolean
Enables encryption for in-flight smb3 data. Only applicable for SMB/DualProtocol volume. To be used with swagger version 2020-08-01 or later
smbNonBrowsable String | SmbNonBrowsable
Enables non browsable property for SMB Shares. Only applicable for SMB/DualProtocol volume
snapshotDirectoryVisible Boolean
If enabled (true) the volume will contain a read-only snapshot directory which provides access to each of the volume's snapshots (defaults to true).
snapshotId String
UUID v4 or resource identifier used to identify the Snapshot.
tags Map<String,String>
Resource tags
throughputMibps Double
unixPermissions String
UNIX permissions for NFS volume accepted in octal 4 digit format. First digit selects the set user ID(4), set group ID (2) and sticky (1) attributes. Second digit selects permission for the owner of the file: read (4), write (2) and execute (1). Third selects permissions for other users in the same group. the fourth for other users not in the group. 0755 - gives read/write/execute permissions to owner and read/execute to group and other users.
volumeSpecName String
Volume spec name is the application specific designation or identifier for the particular volume in a volume group for e.g. data, log
volumeType String
What type of volume is this. For destination volumes in Cross Region Replication, set type to DataProtection
creationToken This property is required. string
A unique file path for the volume. Used when creating mount targets
subnetId This property is required. string
The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes
usageThreshold This property is required. number
Maximum storage quota allowed for a file system in bytes. This is a soft quota used for alerting only. Minimum size is 100 GiB. Upper limit is 100TiB, 500Tib for LargeVolume. Specified in bytes.
avsDataStore string | AvsDataStore
Specifies whether the volume is enabled for Azure VMware Solution (AVS) datastore purpose
backupId string
UUID v4 or resource identifier used to identify the Backup.
capacityPoolResourceId string
Pool Resource Id used in case of creating a volume through volume group
coolAccess boolean
Specifies whether Cool Access(tiering) is enabled for the volume.
coolnessPeriod number
Specifies the number of days after which data that is not accessed by clients will be tiered.
dataProtection VolumePropertiesDataProtection
DataProtection type volumes include an object containing details of the replication
defaultGroupQuotaInKiBs number
Default group quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies.
defaultUserQuotaInKiBs number
Default user quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies .
deleteBaseSnapshot boolean
If enabled (true) the snapshot the volume was created from will be automatically deleted after the volume create operation has finished. Defaults to false
enableSubvolumes string | EnableSubvolumes
Flag indicating whether subvolume operations are enabled on the volume
encryptionKeySource string | EncryptionKeySource
Source of key used to encrypt data in volume. Applicable if NetApp account has encryption.keySource = 'Microsoft.KeyVault'. Possible values (case-insensitive) are: 'Microsoft.NetApp, Microsoft.KeyVault'
exportPolicy VolumePropertiesExportPolicy
Set of export policy rules
isDefaultQuotaEnabled boolean
Specifies if default quota is enabled for the volume.
isLargeVolume boolean
Specifies whether volume is a Large Volume or Regular Volume.
isRestoring boolean
Restoring
kerberosEnabled boolean
Describe if a volume is KerberosEnabled. To be use with swagger version 2020-05-01 or later
keyVaultPrivateEndpointResourceId string
The resource ID of private endpoint for KeyVault. It must reside in the same VNET as the volume. Only applicable if encryptionKeySource = 'Microsoft.KeyVault'.
ldapEnabled boolean
Specifies whether LDAP is enabled or not for a given NFS volume.
name string
Resource name
networkFeatures string | NetworkFeatures
Basic network, or Standard features available to the volume.
placementRules PlacementKeyValuePairs[]
Application specific placement rules for the particular volume
protocolTypes string[]
Set of protocol types, default NFSv3, CIFS for SMB protocol
proximityPlacementGroup string
Proximity placement group associated with the volume
securityStyle string | SecurityStyle
The security style of volume, default unix, defaults to ntfs for dual protocol or CIFS protocol
serviceLevel string | ServiceLevel
The service level of the file system
smbAccessBasedEnumeration string | SmbAccessBasedEnumeration
Enables access based enumeration share property for SMB Shares. Only applicable for SMB/DualProtocol volume
smbContinuouslyAvailable boolean
Enables continuously available share property for smb volume. Only applicable for SMB volume
smbEncryption boolean
Enables encryption for in-flight smb3 data. Only applicable for SMB/DualProtocol volume. To be used with swagger version 2020-08-01 or later
smbNonBrowsable string | SmbNonBrowsable
Enables non browsable property for SMB Shares. Only applicable for SMB/DualProtocol volume
snapshotDirectoryVisible boolean
If enabled (true) the volume will contain a read-only snapshot directory which provides access to each of the volume's snapshots (defaults to true).
snapshotId string
UUID v4 or resource identifier used to identify the Snapshot.
tags {[key: string]: string}
Resource tags
throughputMibps number
unixPermissions string
UNIX permissions for NFS volume accepted in octal 4 digit format. First digit selects the set user ID(4), set group ID (2) and sticky (1) attributes. Second digit selects permission for the owner of the file: read (4), write (2) and execute (1). Third selects permissions for other users in the same group. the fourth for other users not in the group. 0755 - gives read/write/execute permissions to owner and read/execute to group and other users.
volumeSpecName string
Volume spec name is the application specific designation or identifier for the particular volume in a volume group for e.g. data, log
volumeType string
What type of volume is this. For destination volumes in Cross Region Replication, set type to DataProtection
creation_token This property is required. str
A unique file path for the volume. Used when creating mount targets
subnet_id This property is required. str
The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes
usage_threshold This property is required. float
Maximum storage quota allowed for a file system in bytes. This is a soft quota used for alerting only. Minimum size is 100 GiB. Upper limit is 100TiB, 500Tib for LargeVolume. Specified in bytes.
avs_data_store str | AvsDataStore
Specifies whether the volume is enabled for Azure VMware Solution (AVS) datastore purpose
backup_id str
UUID v4 or resource identifier used to identify the Backup.
capacity_pool_resource_id str
Pool Resource Id used in case of creating a volume through volume group
cool_access bool
Specifies whether Cool Access(tiering) is enabled for the volume.
coolness_period int
Specifies the number of days after which data that is not accessed by clients will be tiered.
data_protection VolumePropertiesDataProtection
DataProtection type volumes include an object containing details of the replication
default_group_quota_in_ki_bs float
Default group quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies.
default_user_quota_in_ki_bs float
Default user quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies .
delete_base_snapshot bool
If enabled (true) the snapshot the volume was created from will be automatically deleted after the volume create operation has finished. Defaults to false
enable_subvolumes str | EnableSubvolumes
Flag indicating whether subvolume operations are enabled on the volume
encryption_key_source str | EncryptionKeySource
Source of key used to encrypt data in volume. Applicable if NetApp account has encryption.keySource = 'Microsoft.KeyVault'. Possible values (case-insensitive) are: 'Microsoft.NetApp, Microsoft.KeyVault'
export_policy VolumePropertiesExportPolicy
Set of export policy rules
is_default_quota_enabled bool
Specifies if default quota is enabled for the volume.
is_large_volume bool
Specifies whether volume is a Large Volume or Regular Volume.
is_restoring bool
Restoring
kerberos_enabled bool
Describe if a volume is KerberosEnabled. To be use with swagger version 2020-05-01 or later
key_vault_private_endpoint_resource_id str
The resource ID of private endpoint for KeyVault. It must reside in the same VNET as the volume. Only applicable if encryptionKeySource = 'Microsoft.KeyVault'.
ldap_enabled bool
Specifies whether LDAP is enabled or not for a given NFS volume.
name str
Resource name
network_features str | NetworkFeatures
Basic network, or Standard features available to the volume.
placement_rules Sequence[PlacementKeyValuePairs]
Application specific placement rules for the particular volume
protocol_types Sequence[str]
Set of protocol types, default NFSv3, CIFS for SMB protocol
proximity_placement_group str
Proximity placement group associated with the volume
security_style str | SecurityStyle
The security style of volume, default unix, defaults to ntfs for dual protocol or CIFS protocol
service_level str | ServiceLevel
The service level of the file system
smb_access_based_enumeration str | SmbAccessBasedEnumeration
Enables access based enumeration share property for SMB Shares. Only applicable for SMB/DualProtocol volume
smb_continuously_available bool
Enables continuously available share property for smb volume. Only applicable for SMB volume
smb_encryption bool
Enables encryption for in-flight smb3 data. Only applicable for SMB/DualProtocol volume. To be used with swagger version 2020-08-01 or later
smb_non_browsable str | SmbNonBrowsable
Enables non browsable property for SMB Shares. Only applicable for SMB/DualProtocol volume
snapshot_directory_visible bool
If enabled (true) the volume will contain a read-only snapshot directory which provides access to each of the volume's snapshots (defaults to true).
snapshot_id str
UUID v4 or resource identifier used to identify the Snapshot.
tags Mapping[str, str]
Resource tags
throughput_mibps float
unix_permissions str
UNIX permissions for NFS volume accepted in octal 4 digit format. First digit selects the set user ID(4), set group ID (2) and sticky (1) attributes. Second digit selects permission for the owner of the file: read (4), write (2) and execute (1). Third selects permissions for other users in the same group. the fourth for other users not in the group. 0755 - gives read/write/execute permissions to owner and read/execute to group and other users.
volume_spec_name str
Volume spec name is the application specific designation or identifier for the particular volume in a volume group for e.g. data, log
volume_type str
What type of volume is this. For destination volumes in Cross Region Replication, set type to DataProtection
creationToken This property is required. String
A unique file path for the volume. Used when creating mount targets
subnetId This property is required. String
The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes
usageThreshold This property is required. Number
Maximum storage quota allowed for a file system in bytes. This is a soft quota used for alerting only. Minimum size is 100 GiB. Upper limit is 100TiB, 500Tib for LargeVolume. Specified in bytes.
avsDataStore String | "Enabled" | "Disabled"
Specifies whether the volume is enabled for Azure VMware Solution (AVS) datastore purpose
backupId String
UUID v4 or resource identifier used to identify the Backup.
capacityPoolResourceId String
Pool Resource Id used in case of creating a volume through volume group
coolAccess Boolean
Specifies whether Cool Access(tiering) is enabled for the volume.
coolnessPeriod Number
Specifies the number of days after which data that is not accessed by clients will be tiered.
dataProtection Property Map
DataProtection type volumes include an object containing details of the replication
defaultGroupQuotaInKiBs Number
Default group quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies.
defaultUserQuotaInKiBs Number
Default user quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies .
deleteBaseSnapshot Boolean
If enabled (true) the snapshot the volume was created from will be automatically deleted after the volume create operation has finished. Defaults to false
enableSubvolumes String | "Enabled" | "Disabled"
Flag indicating whether subvolume operations are enabled on the volume
encryptionKeySource String | "Microsoft.NetApp" | "Microsoft.KeyVault"
Source of key used to encrypt data in volume. Applicable if NetApp account has encryption.keySource = 'Microsoft.KeyVault'. Possible values (case-insensitive) are: 'Microsoft.NetApp, Microsoft.KeyVault'
exportPolicy Property Map
Set of export policy rules
isDefaultQuotaEnabled Boolean
Specifies if default quota is enabled for the volume.
isLargeVolume Boolean
Specifies whether volume is a Large Volume or Regular Volume.
isRestoring Boolean
Restoring
kerberosEnabled Boolean
Describe if a volume is KerberosEnabled. To be use with swagger version 2020-05-01 or later
keyVaultPrivateEndpointResourceId String
The resource ID of private endpoint for KeyVault. It must reside in the same VNET as the volume. Only applicable if encryptionKeySource = 'Microsoft.KeyVault'.
ldapEnabled Boolean
Specifies whether LDAP is enabled or not for a given NFS volume.
name String
Resource name
networkFeatures String | "Basic" | "Standard"
Basic network, or Standard features available to the volume.
placementRules List<Property Map>
Application specific placement rules for the particular volume
protocolTypes List<String>
Set of protocol types, default NFSv3, CIFS for SMB protocol
proximityPlacementGroup String
Proximity placement group associated with the volume
securityStyle String | "ntfs" | "unix"
The security style of volume, default unix, defaults to ntfs for dual protocol or CIFS protocol
serviceLevel String | "Standard" | "Premium" | "Ultra" | "StandardZRS"
The service level of the file system
smbAccessBasedEnumeration String | "Disabled" | "Enabled"
Enables access based enumeration share property for SMB Shares. Only applicable for SMB/DualProtocol volume
smbContinuouslyAvailable Boolean
Enables continuously available share property for smb volume. Only applicable for SMB volume
smbEncryption Boolean
Enables encryption for in-flight smb3 data. Only applicable for SMB/DualProtocol volume. To be used with swagger version 2020-08-01 or later
smbNonBrowsable String | "Disabled" | "Enabled"
Enables non browsable property for SMB Shares. Only applicable for SMB/DualProtocol volume
snapshotDirectoryVisible Boolean
If enabled (true) the volume will contain a read-only snapshot directory which provides access to each of the volume's snapshots (defaults to true).
snapshotId String
UUID v4 or resource identifier used to identify the Snapshot.
tags Map<String>
Resource tags
throughputMibps Number
unixPermissions String
UNIX permissions for NFS volume accepted in octal 4 digit format. First digit selects the set user ID(4), set group ID (2) and sticky (1) attributes. Second digit selects permission for the owner of the file: read (4), write (2) and execute (1). Third selects permissions for other users in the same group. the fourth for other users not in the group. 0755 - gives read/write/execute permissions to owner and read/execute to group and other users.
volumeSpecName String
Volume spec name is the application specific designation or identifier for the particular volume in a volume group for e.g. data, log
volumeType String
What type of volume is this. For destination volumes in Cross Region Replication, set type to DataProtection

VolumeGroupVolumePropertiesResponse
, VolumeGroupVolumePropertiesResponseArgs

ActualThroughputMibps This property is required. double
Actual throughput in MiB/s for auto qosType volumes calculated based on size and serviceLevel
BaremetalTenantId This property is required. string
Unique Baremetal Tenant Identifier.
CloneProgress This property is required. int
When a volume is being restored from another volume's snapshot, will show the percentage completion of this cloning process. When this value is empty/null there is no cloning process currently happening on this volume. This value will update every 5 minutes during cloning.
CreationToken This property is required. string
A unique file path for the volume. Used when creating mount targets
DataStoreResourceId This property is required. List<string>
Data store resource unique identifier
Encrypted This property is required. bool
Specifies if the volume is encrypted or not. Only available on volumes created or updated after 2022-01-01.
FileAccessLogs This property is required. string
Flag indicating whether file access logs are enabled for the volume, based on active diagnostic settings present on the volume.
FileSystemId This property is required. string
Unique FileSystem Identifier.
Id This property is required. string
Resource Id
MaximumNumberOfFiles This property is required. double
Maximum number of files allowed. Needs a service request in order to be changed. Only allowed to be changed if volume quota is more than 4TiB.
MountTargets This property is required. List<Pulumi.AzureNative.NetApp.Inputs.MountTargetPropertiesResponse>
List of mount targets
NetworkSiblingSetId This property is required. string
Network Sibling Set ID for the the group of volumes sharing networking resources.
OriginatingResourceId This property is required. string
Id of the snapshot or backup that the volume is restored from.
ProvisionedAvailabilityZone This property is required. string
The availability zone where the volume is provisioned. This refers to the logical availability zone where the volume resides.
ProvisioningState This property is required. string
Azure lifecycle management
StorageToNetworkProximity This property is required. string
Provides storage to network proximity information for the volume.
SubnetId This property is required. string
The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes
T2Network This property is required. string
T2 network information
Type This property is required. string
Resource type
UsageThreshold This property is required. double
Maximum storage quota allowed for a file system in bytes. This is a soft quota used for alerting only. Minimum size is 100 GiB. Upper limit is 100TiB, 500Tib for LargeVolume. Specified in bytes.
VolumeGroupName This property is required. string
Volume Group Name
AvsDataStore string
Specifies whether the volume is enabled for Azure VMware Solution (AVS) datastore purpose
BackupId string
UUID v4 or resource identifier used to identify the Backup.
CapacityPoolResourceId string
Pool Resource Id used in case of creating a volume through volume group
CoolAccess bool
Specifies whether Cool Access(tiering) is enabled for the volume.
CoolnessPeriod int
Specifies the number of days after which data that is not accessed by clients will be tiered.
DataProtection Pulumi.AzureNative.NetApp.Inputs.VolumePropertiesResponseDataProtection
DataProtection type volumes include an object containing details of the replication
DefaultGroupQuotaInKiBs double
Default group quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies.
DefaultUserQuotaInKiBs double
Default user quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies .
DeleteBaseSnapshot bool
If enabled (true) the snapshot the volume was created from will be automatically deleted after the volume create operation has finished. Defaults to false
EnableSubvolumes string
Flag indicating whether subvolume operations are enabled on the volume
EncryptionKeySource string
Source of key used to encrypt data in volume. Applicable if NetApp account has encryption.keySource = 'Microsoft.KeyVault'. Possible values (case-insensitive) are: 'Microsoft.NetApp, Microsoft.KeyVault'
ExportPolicy Pulumi.AzureNative.NetApp.Inputs.VolumePropertiesResponseExportPolicy
Set of export policy rules
IsDefaultQuotaEnabled bool
Specifies if default quota is enabled for the volume.
IsLargeVolume bool
Specifies whether volume is a Large Volume or Regular Volume.
IsRestoring bool
Restoring
KerberosEnabled bool
Describe if a volume is KerberosEnabled. To be use with swagger version 2020-05-01 or later
KeyVaultPrivateEndpointResourceId string
The resource ID of private endpoint for KeyVault. It must reside in the same VNET as the volume. Only applicable if encryptionKeySource = 'Microsoft.KeyVault'.
LdapEnabled bool
Specifies whether LDAP is enabled or not for a given NFS volume.
Name string
Resource name
NetworkFeatures string
Basic network, or Standard features available to the volume.
PlacementRules List<Pulumi.AzureNative.NetApp.Inputs.PlacementKeyValuePairsResponse>
Application specific placement rules for the particular volume
ProtocolTypes List<string>
Set of protocol types, default NFSv3, CIFS for SMB protocol
ProximityPlacementGroup string
Proximity placement group associated with the volume
SecurityStyle string
The security style of volume, default unix, defaults to ntfs for dual protocol or CIFS protocol
ServiceLevel string
The service level of the file system
SmbAccessBasedEnumeration string
Enables access based enumeration share property for SMB Shares. Only applicable for SMB/DualProtocol volume
SmbContinuouslyAvailable bool
Enables continuously available share property for smb volume. Only applicable for SMB volume
SmbEncryption bool
Enables encryption for in-flight smb3 data. Only applicable for SMB/DualProtocol volume. To be used with swagger version 2020-08-01 or later
SmbNonBrowsable string
Enables non browsable property for SMB Shares. Only applicable for SMB/DualProtocol volume
SnapshotDirectoryVisible bool
If enabled (true) the volume will contain a read-only snapshot directory which provides access to each of the volume's snapshots (defaults to true).
SnapshotId string
UUID v4 or resource identifier used to identify the Snapshot.
Tags Dictionary<string, string>
Resource tags
ThroughputMibps double
UnixPermissions string
UNIX permissions for NFS volume accepted in octal 4 digit format. First digit selects the set user ID(4), set group ID (2) and sticky (1) attributes. Second digit selects permission for the owner of the file: read (4), write (2) and execute (1). Third selects permissions for other users in the same group. the fourth for other users not in the group. 0755 - gives read/write/execute permissions to owner and read/execute to group and other users.
VolumeSpecName string
Volume spec name is the application specific designation or identifier for the particular volume in a volume group for e.g. data, log
VolumeType string
What type of volume is this. For destination volumes in Cross Region Replication, set type to DataProtection
ActualThroughputMibps This property is required. float64
Actual throughput in MiB/s for auto qosType volumes calculated based on size and serviceLevel
BaremetalTenantId This property is required. string
Unique Baremetal Tenant Identifier.
CloneProgress This property is required. int
When a volume is being restored from another volume's snapshot, will show the percentage completion of this cloning process. When this value is empty/null there is no cloning process currently happening on this volume. This value will update every 5 minutes during cloning.
CreationToken This property is required. string
A unique file path for the volume. Used when creating mount targets
DataStoreResourceId This property is required. []string
Data store resource unique identifier
Encrypted This property is required. bool
Specifies if the volume is encrypted or not. Only available on volumes created or updated after 2022-01-01.
FileAccessLogs This property is required. string
Flag indicating whether file access logs are enabled for the volume, based on active diagnostic settings present on the volume.
FileSystemId This property is required. string
Unique FileSystem Identifier.
Id This property is required. string
Resource Id
MaximumNumberOfFiles This property is required. float64
Maximum number of files allowed. Needs a service request in order to be changed. Only allowed to be changed if volume quota is more than 4TiB.
MountTargets This property is required. []MountTargetPropertiesResponse
List of mount targets
NetworkSiblingSetId This property is required. string
Network Sibling Set ID for the the group of volumes sharing networking resources.
OriginatingResourceId This property is required. string
Id of the snapshot or backup that the volume is restored from.
ProvisionedAvailabilityZone This property is required. string
The availability zone where the volume is provisioned. This refers to the logical availability zone where the volume resides.
ProvisioningState This property is required. string
Azure lifecycle management
StorageToNetworkProximity This property is required. string
Provides storage to network proximity information for the volume.
SubnetId This property is required. string
The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes
T2Network This property is required. string
T2 network information
Type This property is required. string
Resource type
UsageThreshold This property is required. float64
Maximum storage quota allowed for a file system in bytes. This is a soft quota used for alerting only. Minimum size is 100 GiB. Upper limit is 100TiB, 500Tib for LargeVolume. Specified in bytes.
VolumeGroupName This property is required. string
Volume Group Name
AvsDataStore string
Specifies whether the volume is enabled for Azure VMware Solution (AVS) datastore purpose
BackupId string
UUID v4 or resource identifier used to identify the Backup.
CapacityPoolResourceId string
Pool Resource Id used in case of creating a volume through volume group
CoolAccess bool
Specifies whether Cool Access(tiering) is enabled for the volume.
CoolnessPeriod int
Specifies the number of days after which data that is not accessed by clients will be tiered.
DataProtection VolumePropertiesResponseDataProtection
DataProtection type volumes include an object containing details of the replication
DefaultGroupQuotaInKiBs float64
Default group quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies.
DefaultUserQuotaInKiBs float64
Default user quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies .
DeleteBaseSnapshot bool
If enabled (true) the snapshot the volume was created from will be automatically deleted after the volume create operation has finished. Defaults to false
EnableSubvolumes string
Flag indicating whether subvolume operations are enabled on the volume
EncryptionKeySource string
Source of key used to encrypt data in volume. Applicable if NetApp account has encryption.keySource = 'Microsoft.KeyVault'. Possible values (case-insensitive) are: 'Microsoft.NetApp, Microsoft.KeyVault'
ExportPolicy VolumePropertiesResponseExportPolicy
Set of export policy rules
IsDefaultQuotaEnabled bool
Specifies if default quota is enabled for the volume.
IsLargeVolume bool
Specifies whether volume is a Large Volume or Regular Volume.
IsRestoring bool
Restoring
KerberosEnabled bool
Describe if a volume is KerberosEnabled. To be use with swagger version 2020-05-01 or later
KeyVaultPrivateEndpointResourceId string
The resource ID of private endpoint for KeyVault. It must reside in the same VNET as the volume. Only applicable if encryptionKeySource = 'Microsoft.KeyVault'.
LdapEnabled bool
Specifies whether LDAP is enabled or not for a given NFS volume.
Name string
Resource name
NetworkFeatures string
Basic network, or Standard features available to the volume.
PlacementRules []PlacementKeyValuePairsResponse
Application specific placement rules for the particular volume
ProtocolTypes []string
Set of protocol types, default NFSv3, CIFS for SMB protocol
ProximityPlacementGroup string
Proximity placement group associated with the volume
SecurityStyle string
The security style of volume, default unix, defaults to ntfs for dual protocol or CIFS protocol
ServiceLevel string
The service level of the file system
SmbAccessBasedEnumeration string
Enables access based enumeration share property for SMB Shares. Only applicable for SMB/DualProtocol volume
SmbContinuouslyAvailable bool
Enables continuously available share property for smb volume. Only applicable for SMB volume
SmbEncryption bool
Enables encryption for in-flight smb3 data. Only applicable for SMB/DualProtocol volume. To be used with swagger version 2020-08-01 or later
SmbNonBrowsable string
Enables non browsable property for SMB Shares. Only applicable for SMB/DualProtocol volume
SnapshotDirectoryVisible bool
If enabled (true) the volume will contain a read-only snapshot directory which provides access to each of the volume's snapshots (defaults to true).
SnapshotId string
UUID v4 or resource identifier used to identify the Snapshot.
Tags map[string]string
Resource tags
ThroughputMibps float64
UnixPermissions string
UNIX permissions for NFS volume accepted in octal 4 digit format. First digit selects the set user ID(4), set group ID (2) and sticky (1) attributes. Second digit selects permission for the owner of the file: read (4), write (2) and execute (1). Third selects permissions for other users in the same group. the fourth for other users not in the group. 0755 - gives read/write/execute permissions to owner and read/execute to group and other users.
VolumeSpecName string
Volume spec name is the application specific designation or identifier for the particular volume in a volume group for e.g. data, log
VolumeType string
What type of volume is this. For destination volumes in Cross Region Replication, set type to DataProtection
actualThroughputMibps This property is required. Double
Actual throughput in MiB/s for auto qosType volumes calculated based on size and serviceLevel
baremetalTenantId This property is required. String
Unique Baremetal Tenant Identifier.
cloneProgress This property is required. Integer
When a volume is being restored from another volume's snapshot, will show the percentage completion of this cloning process. When this value is empty/null there is no cloning process currently happening on this volume. This value will update every 5 minutes during cloning.
creationToken This property is required. String
A unique file path for the volume. Used when creating mount targets
dataStoreResourceId This property is required. List<String>
Data store resource unique identifier
encrypted This property is required. Boolean
Specifies if the volume is encrypted or not. Only available on volumes created or updated after 2022-01-01.
fileAccessLogs This property is required. String
Flag indicating whether file access logs are enabled for the volume, based on active diagnostic settings present on the volume.
fileSystemId This property is required. String
Unique FileSystem Identifier.
id This property is required. String
Resource Id
maximumNumberOfFiles This property is required. Double
Maximum number of files allowed. Needs a service request in order to be changed. Only allowed to be changed if volume quota is more than 4TiB.
mountTargets This property is required. List<MountTargetPropertiesResponse>
List of mount targets
networkSiblingSetId This property is required. String
Network Sibling Set ID for the the group of volumes sharing networking resources.
originatingResourceId This property is required. String
Id of the snapshot or backup that the volume is restored from.
provisionedAvailabilityZone This property is required. String
The availability zone where the volume is provisioned. This refers to the logical availability zone where the volume resides.
provisioningState This property is required. String
Azure lifecycle management
storageToNetworkProximity This property is required. String
Provides storage to network proximity information for the volume.
subnetId This property is required. String
The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes
t2Network This property is required. String
T2 network information
type This property is required. String
Resource type
usageThreshold This property is required. Double
Maximum storage quota allowed for a file system in bytes. This is a soft quota used for alerting only. Minimum size is 100 GiB. Upper limit is 100TiB, 500Tib for LargeVolume. Specified in bytes.
volumeGroupName This property is required. String
Volume Group Name
avsDataStore String
Specifies whether the volume is enabled for Azure VMware Solution (AVS) datastore purpose
backupId String
UUID v4 or resource identifier used to identify the Backup.
capacityPoolResourceId String
Pool Resource Id used in case of creating a volume through volume group
coolAccess Boolean
Specifies whether Cool Access(tiering) is enabled for the volume.
coolnessPeriod Integer
Specifies the number of days after which data that is not accessed by clients will be tiered.
dataProtection VolumePropertiesResponseDataProtection
DataProtection type volumes include an object containing details of the replication
defaultGroupQuotaInKiBs Double
Default group quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies.
defaultUserQuotaInKiBs Double
Default user quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies .
deleteBaseSnapshot Boolean
If enabled (true) the snapshot the volume was created from will be automatically deleted after the volume create operation has finished. Defaults to false
enableSubvolumes String
Flag indicating whether subvolume operations are enabled on the volume
encryptionKeySource String
Source of key used to encrypt data in volume. Applicable if NetApp account has encryption.keySource = 'Microsoft.KeyVault'. Possible values (case-insensitive) are: 'Microsoft.NetApp, Microsoft.KeyVault'
exportPolicy VolumePropertiesResponseExportPolicy
Set of export policy rules
isDefaultQuotaEnabled Boolean
Specifies if default quota is enabled for the volume.
isLargeVolume Boolean
Specifies whether volume is a Large Volume or Regular Volume.
isRestoring Boolean
Restoring
kerberosEnabled Boolean
Describe if a volume is KerberosEnabled. To be use with swagger version 2020-05-01 or later
keyVaultPrivateEndpointResourceId String
The resource ID of private endpoint for KeyVault. It must reside in the same VNET as the volume. Only applicable if encryptionKeySource = 'Microsoft.KeyVault'.
ldapEnabled Boolean
Specifies whether LDAP is enabled or not for a given NFS volume.
name String
Resource name
networkFeatures String
Basic network, or Standard features available to the volume.
placementRules List<PlacementKeyValuePairsResponse>
Application specific placement rules for the particular volume
protocolTypes List<String>
Set of protocol types, default NFSv3, CIFS for SMB protocol
proximityPlacementGroup String
Proximity placement group associated with the volume
securityStyle String
The security style of volume, default unix, defaults to ntfs for dual protocol or CIFS protocol
serviceLevel String
The service level of the file system
smbAccessBasedEnumeration String
Enables access based enumeration share property for SMB Shares. Only applicable for SMB/DualProtocol volume
smbContinuouslyAvailable Boolean
Enables continuously available share property for smb volume. Only applicable for SMB volume
smbEncryption Boolean
Enables encryption for in-flight smb3 data. Only applicable for SMB/DualProtocol volume. To be used with swagger version 2020-08-01 or later
smbNonBrowsable String
Enables non browsable property for SMB Shares. Only applicable for SMB/DualProtocol volume
snapshotDirectoryVisible Boolean
If enabled (true) the volume will contain a read-only snapshot directory which provides access to each of the volume's snapshots (defaults to true).
snapshotId String
UUID v4 or resource identifier used to identify the Snapshot.
tags Map<String,String>
Resource tags
throughputMibps Double
unixPermissions String
UNIX permissions for NFS volume accepted in octal 4 digit format. First digit selects the set user ID(4), set group ID (2) and sticky (1) attributes. Second digit selects permission for the owner of the file: read (4), write (2) and execute (1). Third selects permissions for other users in the same group. the fourth for other users not in the group. 0755 - gives read/write/execute permissions to owner and read/execute to group and other users.
volumeSpecName String
Volume spec name is the application specific designation or identifier for the particular volume in a volume group for e.g. data, log
volumeType String
What type of volume is this. For destination volumes in Cross Region Replication, set type to DataProtection
actualThroughputMibps This property is required. number
Actual throughput in MiB/s for auto qosType volumes calculated based on size and serviceLevel
baremetalTenantId This property is required. string
Unique Baremetal Tenant Identifier.
cloneProgress This property is required. number
When a volume is being restored from another volume's snapshot, will show the percentage completion of this cloning process. When this value is empty/null there is no cloning process currently happening on this volume. This value will update every 5 minutes during cloning.
creationToken This property is required. string
A unique file path for the volume. Used when creating mount targets
dataStoreResourceId This property is required. string[]
Data store resource unique identifier
encrypted This property is required. boolean
Specifies if the volume is encrypted or not. Only available on volumes created or updated after 2022-01-01.
fileAccessLogs This property is required. string
Flag indicating whether file access logs are enabled for the volume, based on active diagnostic settings present on the volume.
fileSystemId This property is required. string
Unique FileSystem Identifier.
id This property is required. string
Resource Id
maximumNumberOfFiles This property is required. number
Maximum number of files allowed. Needs a service request in order to be changed. Only allowed to be changed if volume quota is more than 4TiB.
mountTargets This property is required. MountTargetPropertiesResponse[]
List of mount targets
networkSiblingSetId This property is required. string
Network Sibling Set ID for the the group of volumes sharing networking resources.
originatingResourceId This property is required. string
Id of the snapshot or backup that the volume is restored from.
provisionedAvailabilityZone This property is required. string
The availability zone where the volume is provisioned. This refers to the logical availability zone where the volume resides.
provisioningState This property is required. string
Azure lifecycle management
storageToNetworkProximity This property is required. string
Provides storage to network proximity information for the volume.
subnetId This property is required. string
The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes
t2Network This property is required. string
T2 network information
type This property is required. string
Resource type
usageThreshold This property is required. number
Maximum storage quota allowed for a file system in bytes. This is a soft quota used for alerting only. Minimum size is 100 GiB. Upper limit is 100TiB, 500Tib for LargeVolume. Specified in bytes.
volumeGroupName This property is required. string
Volume Group Name
avsDataStore string
Specifies whether the volume is enabled for Azure VMware Solution (AVS) datastore purpose
backupId string
UUID v4 or resource identifier used to identify the Backup.
capacityPoolResourceId string
Pool Resource Id used in case of creating a volume through volume group
coolAccess boolean
Specifies whether Cool Access(tiering) is enabled for the volume.
coolnessPeriod number
Specifies the number of days after which data that is not accessed by clients will be tiered.
dataProtection VolumePropertiesResponseDataProtection
DataProtection type volumes include an object containing details of the replication
defaultGroupQuotaInKiBs number
Default group quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies.
defaultUserQuotaInKiBs number
Default user quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies .
deleteBaseSnapshot boolean
If enabled (true) the snapshot the volume was created from will be automatically deleted after the volume create operation has finished. Defaults to false
enableSubvolumes string
Flag indicating whether subvolume operations are enabled on the volume
encryptionKeySource string
Source of key used to encrypt data in volume. Applicable if NetApp account has encryption.keySource = 'Microsoft.KeyVault'. Possible values (case-insensitive) are: 'Microsoft.NetApp, Microsoft.KeyVault'
exportPolicy VolumePropertiesResponseExportPolicy
Set of export policy rules
isDefaultQuotaEnabled boolean
Specifies if default quota is enabled for the volume.
isLargeVolume boolean
Specifies whether volume is a Large Volume or Regular Volume.
isRestoring boolean
Restoring
kerberosEnabled boolean
Describe if a volume is KerberosEnabled. To be use with swagger version 2020-05-01 or later
keyVaultPrivateEndpointResourceId string
The resource ID of private endpoint for KeyVault. It must reside in the same VNET as the volume. Only applicable if encryptionKeySource = 'Microsoft.KeyVault'.
ldapEnabled boolean
Specifies whether LDAP is enabled or not for a given NFS volume.
name string
Resource name
networkFeatures string
Basic network, or Standard features available to the volume.
placementRules PlacementKeyValuePairsResponse[]
Application specific placement rules for the particular volume
protocolTypes string[]
Set of protocol types, default NFSv3, CIFS for SMB protocol
proximityPlacementGroup string
Proximity placement group associated with the volume
securityStyle string
The security style of volume, default unix, defaults to ntfs for dual protocol or CIFS protocol
serviceLevel string
The service level of the file system
smbAccessBasedEnumeration string
Enables access based enumeration share property for SMB Shares. Only applicable for SMB/DualProtocol volume
smbContinuouslyAvailable boolean
Enables continuously available share property for smb volume. Only applicable for SMB volume
smbEncryption boolean
Enables encryption for in-flight smb3 data. Only applicable for SMB/DualProtocol volume. To be used with swagger version 2020-08-01 or later
smbNonBrowsable string
Enables non browsable property for SMB Shares. Only applicable for SMB/DualProtocol volume
snapshotDirectoryVisible boolean
If enabled (true) the volume will contain a read-only snapshot directory which provides access to each of the volume's snapshots (defaults to true).
snapshotId string
UUID v4 or resource identifier used to identify the Snapshot.
tags {[key: string]: string}
Resource tags
throughputMibps number
unixPermissions string
UNIX permissions for NFS volume accepted in octal 4 digit format. First digit selects the set user ID(4), set group ID (2) and sticky (1) attributes. Second digit selects permission for the owner of the file: read (4), write (2) and execute (1). Third selects permissions for other users in the same group. the fourth for other users not in the group. 0755 - gives read/write/execute permissions to owner and read/execute to group and other users.
volumeSpecName string
Volume spec name is the application specific designation or identifier for the particular volume in a volume group for e.g. data, log
volumeType string
What type of volume is this. For destination volumes in Cross Region Replication, set type to DataProtection
actual_throughput_mibps This property is required. float
Actual throughput in MiB/s for auto qosType volumes calculated based on size and serviceLevel
baremetal_tenant_id This property is required. str
Unique Baremetal Tenant Identifier.
clone_progress This property is required. int
When a volume is being restored from another volume's snapshot, will show the percentage completion of this cloning process. When this value is empty/null there is no cloning process currently happening on this volume. This value will update every 5 minutes during cloning.
creation_token This property is required. str
A unique file path for the volume. Used when creating mount targets
data_store_resource_id This property is required. Sequence[str]
Data store resource unique identifier
encrypted This property is required. bool
Specifies if the volume is encrypted or not. Only available on volumes created or updated after 2022-01-01.
file_access_logs This property is required. str
Flag indicating whether file access logs are enabled for the volume, based on active diagnostic settings present on the volume.
file_system_id This property is required. str
Unique FileSystem Identifier.
id This property is required. str
Resource Id
maximum_number_of_files This property is required. float
Maximum number of files allowed. Needs a service request in order to be changed. Only allowed to be changed if volume quota is more than 4TiB.
mount_targets This property is required. Sequence[MountTargetPropertiesResponse]
List of mount targets
network_sibling_set_id This property is required. str
Network Sibling Set ID for the the group of volumes sharing networking resources.
originating_resource_id This property is required. str
Id of the snapshot or backup that the volume is restored from.
provisioned_availability_zone This property is required. str
The availability zone where the volume is provisioned. This refers to the logical availability zone where the volume resides.
provisioning_state This property is required. str
Azure lifecycle management
storage_to_network_proximity This property is required. str
Provides storage to network proximity information for the volume.
subnet_id This property is required. str
The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes
t2_network This property is required. str
T2 network information
type This property is required. str
Resource type
usage_threshold This property is required. float
Maximum storage quota allowed for a file system in bytes. This is a soft quota used for alerting only. Minimum size is 100 GiB. Upper limit is 100TiB, 500Tib for LargeVolume. Specified in bytes.
volume_group_name This property is required. str
Volume Group Name
avs_data_store str
Specifies whether the volume is enabled for Azure VMware Solution (AVS) datastore purpose
backup_id str
UUID v4 or resource identifier used to identify the Backup.
capacity_pool_resource_id str
Pool Resource Id used in case of creating a volume through volume group
cool_access bool
Specifies whether Cool Access(tiering) is enabled for the volume.
coolness_period int
Specifies the number of days after which data that is not accessed by clients will be tiered.
data_protection VolumePropertiesResponseDataProtection
DataProtection type volumes include an object containing details of the replication
default_group_quota_in_ki_bs float
Default group quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies.
default_user_quota_in_ki_bs float
Default user quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies .
delete_base_snapshot bool
If enabled (true) the snapshot the volume was created from will be automatically deleted after the volume create operation has finished. Defaults to false
enable_subvolumes str
Flag indicating whether subvolume operations are enabled on the volume
encryption_key_source str
Source of key used to encrypt data in volume. Applicable if NetApp account has encryption.keySource = 'Microsoft.KeyVault'. Possible values (case-insensitive) are: 'Microsoft.NetApp, Microsoft.KeyVault'
export_policy VolumePropertiesResponseExportPolicy
Set of export policy rules
is_default_quota_enabled bool
Specifies if default quota is enabled for the volume.
is_large_volume bool
Specifies whether volume is a Large Volume or Regular Volume.
is_restoring bool
Restoring
kerberos_enabled bool
Describe if a volume is KerberosEnabled. To be use with swagger version 2020-05-01 or later
key_vault_private_endpoint_resource_id str
The resource ID of private endpoint for KeyVault. It must reside in the same VNET as the volume. Only applicable if encryptionKeySource = 'Microsoft.KeyVault'.
ldap_enabled bool
Specifies whether LDAP is enabled or not for a given NFS volume.
name str
Resource name
network_features str
Basic network, or Standard features available to the volume.
placement_rules Sequence[PlacementKeyValuePairsResponse]
Application specific placement rules for the particular volume
protocol_types Sequence[str]
Set of protocol types, default NFSv3, CIFS for SMB protocol
proximity_placement_group str
Proximity placement group associated with the volume
security_style str
The security style of volume, default unix, defaults to ntfs for dual protocol or CIFS protocol
service_level str
The service level of the file system
smb_access_based_enumeration str
Enables access based enumeration share property for SMB Shares. Only applicable for SMB/DualProtocol volume
smb_continuously_available bool
Enables continuously available share property for smb volume. Only applicable for SMB volume
smb_encryption bool
Enables encryption for in-flight smb3 data. Only applicable for SMB/DualProtocol volume. To be used with swagger version 2020-08-01 or later
smb_non_browsable str
Enables non browsable property for SMB Shares. Only applicable for SMB/DualProtocol volume
snapshot_directory_visible bool
If enabled (true) the volume will contain a read-only snapshot directory which provides access to each of the volume's snapshots (defaults to true).
snapshot_id str
UUID v4 or resource identifier used to identify the Snapshot.
tags Mapping[str, str]
Resource tags
throughput_mibps float
unix_permissions str
UNIX permissions for NFS volume accepted in octal 4 digit format. First digit selects the set user ID(4), set group ID (2) and sticky (1) attributes. Second digit selects permission for the owner of the file: read (4), write (2) and execute (1). Third selects permissions for other users in the same group. the fourth for other users not in the group. 0755 - gives read/write/execute permissions to owner and read/execute to group and other users.
volume_spec_name str
Volume spec name is the application specific designation or identifier for the particular volume in a volume group for e.g. data, log
volume_type str
What type of volume is this. For destination volumes in Cross Region Replication, set type to DataProtection
actualThroughputMibps This property is required. Number
Actual throughput in MiB/s for auto qosType volumes calculated based on size and serviceLevel
baremetalTenantId This property is required. String
Unique Baremetal Tenant Identifier.
cloneProgress This property is required. Number
When a volume is being restored from another volume's snapshot, will show the percentage completion of this cloning process. When this value is empty/null there is no cloning process currently happening on this volume. This value will update every 5 minutes during cloning.
creationToken This property is required. String
A unique file path for the volume. Used when creating mount targets
dataStoreResourceId This property is required. List<String>
Data store resource unique identifier
encrypted This property is required. Boolean
Specifies if the volume is encrypted or not. Only available on volumes created or updated after 2022-01-01.
fileAccessLogs This property is required. String
Flag indicating whether file access logs are enabled for the volume, based on active diagnostic settings present on the volume.
fileSystemId This property is required. String
Unique FileSystem Identifier.
id This property is required. String
Resource Id
maximumNumberOfFiles This property is required. Number
Maximum number of files allowed. Needs a service request in order to be changed. Only allowed to be changed if volume quota is more than 4TiB.
mountTargets This property is required. List<Property Map>
List of mount targets
networkSiblingSetId This property is required. String
Network Sibling Set ID for the the group of volumes sharing networking resources.
originatingResourceId This property is required. String
Id of the snapshot or backup that the volume is restored from.
provisionedAvailabilityZone This property is required. String
The availability zone where the volume is provisioned. This refers to the logical availability zone where the volume resides.
provisioningState This property is required. String
Azure lifecycle management
storageToNetworkProximity This property is required. String
Provides storage to network proximity information for the volume.
subnetId This property is required. String
The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes
t2Network This property is required. String
T2 network information
type This property is required. String
Resource type
usageThreshold This property is required. Number
Maximum storage quota allowed for a file system in bytes. This is a soft quota used for alerting only. Minimum size is 100 GiB. Upper limit is 100TiB, 500Tib for LargeVolume. Specified in bytes.
volumeGroupName This property is required. String
Volume Group Name
avsDataStore String
Specifies whether the volume is enabled for Azure VMware Solution (AVS) datastore purpose
backupId String
UUID v4 or resource identifier used to identify the Backup.
capacityPoolResourceId String
Pool Resource Id used in case of creating a volume through volume group
coolAccess Boolean
Specifies whether Cool Access(tiering) is enabled for the volume.
coolnessPeriod Number
Specifies the number of days after which data that is not accessed by clients will be tiered.
dataProtection Property Map
DataProtection type volumes include an object containing details of the replication
defaultGroupQuotaInKiBs Number
Default group quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies.
defaultUserQuotaInKiBs Number
Default user quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies .
deleteBaseSnapshot Boolean
If enabled (true) the snapshot the volume was created from will be automatically deleted after the volume create operation has finished. Defaults to false
enableSubvolumes String
Flag indicating whether subvolume operations are enabled on the volume
encryptionKeySource String
Source of key used to encrypt data in volume. Applicable if NetApp account has encryption.keySource = 'Microsoft.KeyVault'. Possible values (case-insensitive) are: 'Microsoft.NetApp, Microsoft.KeyVault'
exportPolicy Property Map
Set of export policy rules
isDefaultQuotaEnabled Boolean
Specifies if default quota is enabled for the volume.
isLargeVolume Boolean
Specifies whether volume is a Large Volume or Regular Volume.
isRestoring Boolean
Restoring
kerberosEnabled Boolean
Describe if a volume is KerberosEnabled. To be use with swagger version 2020-05-01 or later
keyVaultPrivateEndpointResourceId String
The resource ID of private endpoint for KeyVault. It must reside in the same VNET as the volume. Only applicable if encryptionKeySource = 'Microsoft.KeyVault'.
ldapEnabled Boolean
Specifies whether LDAP is enabled or not for a given NFS volume.
name String
Resource name
networkFeatures String
Basic network, or Standard features available to the volume.
placementRules List<Property Map>
Application specific placement rules for the particular volume
protocolTypes List<String>
Set of protocol types, default NFSv3, CIFS for SMB protocol
proximityPlacementGroup String
Proximity placement group associated with the volume
securityStyle String
The security style of volume, default unix, defaults to ntfs for dual protocol or CIFS protocol
serviceLevel String
The service level of the file system
smbAccessBasedEnumeration String
Enables access based enumeration share property for SMB Shares. Only applicable for SMB/DualProtocol volume
smbContinuouslyAvailable Boolean
Enables continuously available share property for smb volume. Only applicable for SMB volume
smbEncryption Boolean
Enables encryption for in-flight smb3 data. Only applicable for SMB/DualProtocol volume. To be used with swagger version 2020-08-01 or later
smbNonBrowsable String
Enables non browsable property for SMB Shares. Only applicable for SMB/DualProtocol volume
snapshotDirectoryVisible Boolean
If enabled (true) the volume will contain a read-only snapshot directory which provides access to each of the volume's snapshots (defaults to true).
snapshotId String
UUID v4 or resource identifier used to identify the Snapshot.
tags Map<String>
Resource tags
throughputMibps Number
unixPermissions String
UNIX permissions for NFS volume accepted in octal 4 digit format. First digit selects the set user ID(4), set group ID (2) and sticky (1) attributes. Second digit selects permission for the owner of the file: read (4), write (2) and execute (1). Third selects permissions for other users in the same group. the fourth for other users not in the group. 0755 - gives read/write/execute permissions to owner and read/execute to group and other users.
volumeSpecName String
Volume spec name is the application specific designation or identifier for the particular volume in a volume group for e.g. data, log
volumeType String
What type of volume is this. For destination volumes in Cross Region Replication, set type to DataProtection

VolumePropertiesDataProtection
, VolumePropertiesDataProtectionArgs

Backup VolumeBackupProperties
Backup Properties
Replication ReplicationObject
Replication properties
Snapshot VolumeSnapshotProperties
Snapshot properties.
VolumeRelocation VolumeRelocationProperties
VolumeRelocation properties
backup VolumeBackupProperties
Backup Properties
replication ReplicationObject
Replication properties
snapshot VolumeSnapshotProperties
Snapshot properties.
volumeRelocation VolumeRelocationProperties
VolumeRelocation properties
backup VolumeBackupProperties
Backup Properties
replication ReplicationObject
Replication properties
snapshot VolumeSnapshotProperties
Snapshot properties.
volumeRelocation VolumeRelocationProperties
VolumeRelocation properties
backup VolumeBackupProperties
Backup Properties
replication ReplicationObject
Replication properties
snapshot VolumeSnapshotProperties
Snapshot properties.
volume_relocation VolumeRelocationProperties
VolumeRelocation properties
backup Property Map
Backup Properties
replication Property Map
Replication properties
snapshot Property Map
Snapshot properties.
volumeRelocation Property Map
VolumeRelocation properties

VolumePropertiesExportPolicy
, VolumePropertiesExportPolicyArgs

Rules []ExportPolicyRule
Export policy rule
rules List<ExportPolicyRule>
Export policy rule
rules ExportPolicyRule[]
Export policy rule
rules List<Property Map>
Export policy rule

VolumePropertiesResponseDataProtection
, VolumePropertiesResponseDataProtectionArgs

backup Property Map
Backup Properties
replication Property Map
Replication properties
snapshot Property Map
Snapshot properties.
volumeRelocation Property Map
VolumeRelocation properties

VolumePropertiesResponseExportPolicy
, VolumePropertiesResponseExportPolicyArgs

rules List<Property Map>
Export policy rule

VolumeRelocationProperties
, VolumeRelocationPropertiesArgs

RelocationRequested bool
Has relocation been requested for this volume
RelocationRequested bool
Has relocation been requested for this volume
relocationRequested Boolean
Has relocation been requested for this volume
relocationRequested boolean
Has relocation been requested for this volume
relocation_requested bool
Has relocation been requested for this volume
relocationRequested Boolean
Has relocation been requested for this volume

VolumeRelocationPropertiesResponse
, VolumeRelocationPropertiesResponseArgs

ReadyToBeFinalized This property is required. bool
Has relocation finished and is ready to be cleaned up
RelocationRequested bool
Has relocation been requested for this volume
ReadyToBeFinalized This property is required. bool
Has relocation finished and is ready to be cleaned up
RelocationRequested bool
Has relocation been requested for this volume
readyToBeFinalized This property is required. Boolean
Has relocation finished and is ready to be cleaned up
relocationRequested Boolean
Has relocation been requested for this volume
readyToBeFinalized This property is required. boolean
Has relocation finished and is ready to be cleaned up
relocationRequested boolean
Has relocation been requested for this volume
ready_to_be_finalized This property is required. bool
Has relocation finished and is ready to be cleaned up
relocation_requested bool
Has relocation been requested for this volume
readyToBeFinalized This property is required. Boolean
Has relocation finished and is ready to be cleaned up
relocationRequested Boolean
Has relocation been requested for this volume

VolumeSnapshotProperties
, VolumeSnapshotPropertiesArgs

SnapshotPolicyId string
Snapshot Policy ResourceId
SnapshotPolicyId string
Snapshot Policy ResourceId
snapshotPolicyId String
Snapshot Policy ResourceId
snapshotPolicyId string
Snapshot Policy ResourceId
snapshot_policy_id str
Snapshot Policy ResourceId
snapshotPolicyId String
Snapshot Policy ResourceId

VolumeSnapshotPropertiesResponse
, VolumeSnapshotPropertiesResponseArgs

SnapshotPolicyId string
Snapshot Policy ResourceId
SnapshotPolicyId string
Snapshot Policy ResourceId
snapshotPolicyId String
Snapshot Policy ResourceId
snapshotPolicyId string
Snapshot Policy ResourceId
snapshot_policy_id str
Snapshot Policy ResourceId
snapshotPolicyId String
Snapshot Policy ResourceId

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:netapp:VolumeGroup group1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/volumeGroups/{volumeGroupName} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi