azure-native.netapp.Volume
Explore with Pulumi AI
Volume resource Azure REST API version: 2022-11-01. Prior API version in Azure Native 1.x: 2020-12-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, 2024-09-01, 2024-09-01-preview.
Example Usage
Volumes_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var volume = new AzureNative.NetApp.Volume("volume", new()
    {
        AccountName = "account1",
        CreationToken = "my-unique-file-path",
        Location = "eastus",
        PoolName = "pool1",
        ResourceGroupName = "myRG",
        ServiceLevel = AzureNative.NetApp.ServiceLevel.Premium,
        SubnetId = "/subscriptions/9760acf5-4638-11e7-9bdb-020073ca7778/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3",
        UsageThreshold = 107374182400,
        VolumeName = "volume1",
    });
});
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.NewVolume(ctx, "volume", &netapp.VolumeArgs{
			AccountName:       pulumi.String("account1"),
			CreationToken:     pulumi.String("my-unique-file-path"),
			Location:          pulumi.String("eastus"),
			PoolName:          pulumi.String("pool1"),
			ResourceGroupName: pulumi.String("myRG"),
			ServiceLevel:      pulumi.String(netapp.ServiceLevelPremium),
			SubnetId:          pulumi.String("/subscriptions/9760acf5-4638-11e7-9bdb-020073ca7778/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3"),
			UsageThreshold:    pulumi.Float64(107374182400),
			VolumeName:        pulumi.String("volume1"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.netapp.Volume;
import com.pulumi.azurenative.netapp.VolumeArgs;
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 volume = new Volume("volume", VolumeArgs.builder()
            .accountName("account1")
            .creationToken("my-unique-file-path")
            .location("eastus")
            .poolName("pool1")
            .resourceGroupName("myRG")
            .serviceLevel("Premium")
            .subnetId("/subscriptions/9760acf5-4638-11e7-9bdb-020073ca7778/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3")
            .usageThreshold(107374182400)
            .volumeName("volume1")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const volume = new azure_native.netapp.Volume("volume", {
    accountName: "account1",
    creationToken: "my-unique-file-path",
    location: "eastus",
    poolName: "pool1",
    resourceGroupName: "myRG",
    serviceLevel: azure_native.netapp.ServiceLevel.Premium,
    subnetId: "/subscriptions/9760acf5-4638-11e7-9bdb-020073ca7778/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3",
    usageThreshold: 107374182400,
    volumeName: "volume1",
});
import pulumi
import pulumi_azure_native as azure_native
volume = azure_native.netapp.Volume("volume",
    account_name="account1",
    creation_token="my-unique-file-path",
    location="eastus",
    pool_name="pool1",
    resource_group_name="myRG",
    service_level=azure_native.netapp.ServiceLevel.PREMIUM,
    subnet_id="/subscriptions/9760acf5-4638-11e7-9bdb-020073ca7778/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3",
    usage_threshold=107374182400,
    volume_name="volume1")
resources:
  volume:
    type: azure-native:netapp:Volume
    properties:
      accountName: account1
      creationToken: my-unique-file-path
      location: eastus
      poolName: pool1
      resourceGroupName: myRG
      serviceLevel: Premium
      subnetId: /subscriptions/9760acf5-4638-11e7-9bdb-020073ca7778/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3
      usageThreshold: 1.073741824e+11
      volumeName: volume1
Create Volume Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Volume(name: string, args: VolumeArgs, opts?: CustomResourceOptions);@overload
def Volume(resource_name: str,
           args: VolumeArgs,
           opts: Optional[ResourceOptions] = None)
@overload
def Volume(resource_name: str,
           opts: Optional[ResourceOptions] = None,
           creation_token: Optional[str] = None,
           usage_threshold: Optional[float] = None,
           subnet_id: Optional[str] = None,
           resource_group_name: Optional[str] = None,
           pool_name: Optional[str] = None,
           account_name: Optional[str] = None,
           placement_rules: Optional[Sequence[PlacementKeyValuePairsArgs]] = None,
           proximity_placement_group: Optional[str] = None,
           default_group_quota_in_ki_bs: Optional[float] = None,
           default_user_quota_in_ki_bs: Optional[float] = None,
           delete_base_snapshot: Optional[bool] = None,
           enable_subvolumes: Optional[Union[str, EnableSubvolumes]] = None,
           encryption_key_source: Optional[Union[str, EncryptionKeySource]] = None,
           export_policy: Optional[VolumePropertiesExportPolicyArgs] = None,
           is_default_quota_enabled: Optional[bool] = None,
           is_large_volume: Optional[bool] = None,
           is_restoring: Optional[bool] = None,
           kerberos_enabled: Optional[bool] = None,
           key_vault_private_endpoint_resource_id: Optional[str] = None,
           ldap_enabled: Optional[bool] = None,
           location: Optional[str] = None,
           network_features: Optional[Union[str, NetworkFeatures]] = None,
           coolness_period: Optional[int] = None,
           cool_access: Optional[bool] = None,
           protocol_types: Optional[Sequence[str]] = None,
           data_protection: Optional[VolumePropertiesDataProtectionArgs] = None,
           capacity_pool_resource_id: Optional[str] = None,
           security_style: Optional[Union[str, SecurityStyle]] = None,
           service_level: Optional[Union[str, ServiceLevel]] = None,
           smb_access_based_enumeration: Optional[Union[str, SmbAccessBasedEnumeration]] = None,
           smb_continuously_available: Optional[bool] = None,
           smb_encryption: Optional[bool] = None,
           smb_non_browsable: Optional[Union[str, SmbNonBrowsable]] = None,
           snapshot_directory_visible: Optional[bool] = None,
           snapshot_id: Optional[str] = None,
           backup_id: Optional[str] = None,
           tags: Optional[Mapping[str, str]] = None,
           throughput_mibps: Optional[float] = None,
           unix_permissions: Optional[str] = None,
           avs_data_store: Optional[Union[str, AvsDataStore]] = None,
           volume_name: Optional[str] = None,
           volume_spec_name: Optional[str] = None,
           volume_type: Optional[str] = None,
           zones: Optional[Sequence[str]] = None)func NewVolume(ctx *Context, name string, args VolumeArgs, opts ...ResourceOption) (*Volume, error)public Volume(string name, VolumeArgs args, CustomResourceOptions? opts = null)
public Volume(String name, VolumeArgs args)
public Volume(String name, VolumeArgs args, CustomResourceOptions options)
type: azure-native:netapp:Volume
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args VolumeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args VolumeArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args VolumeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VolumeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VolumeArgs
- 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 examplevolumeResourceResourceFromNetapp = new AzureNative.NetApp.Volume("examplevolumeResourceResourceFromNetapp", new()
{
    CreationToken = "string",
    UsageThreshold = 0,
    SubnetId = "string",
    ResourceGroupName = "string",
    PoolName = "string",
    AccountName = "string",
    PlacementRules = new[]
    {
        new AzureNative.NetApp.Inputs.PlacementKeyValuePairsArgs
        {
            Key = "string",
            Value = "string",
        },
    },
    ProximityPlacementGroup = "string",
    DefaultGroupQuotaInKiBs = 0,
    DefaultUserQuotaInKiBs = 0,
    DeleteBaseSnapshot = false,
    EnableSubvolumes = "string",
    EncryptionKeySource = "string",
    ExportPolicy = new AzureNative.NetApp.Inputs.VolumePropertiesExportPolicyArgs
    {
        Rules = new[]
        {
            new AzureNative.NetApp.Inputs.ExportPolicyRuleArgs
            {
                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,
    Location = "string",
    NetworkFeatures = "string",
    CoolnessPeriod = 0,
    CoolAccess = false,
    ProtocolTypes = new[]
    {
        "string",
    },
    DataProtection = new AzureNative.NetApp.Inputs.VolumePropertiesDataProtectionArgs
    {
        Backup = new AzureNative.NetApp.Inputs.VolumeBackupPropertiesArgs
        {
            BackupEnabled = false,
            BackupPolicyId = "string",
            PolicyEnforced = false,
        },
        Replication = new AzureNative.NetApp.Inputs.ReplicationObjectArgs
        {
            RemoteVolumeResourceId = "string",
            EndpointType = "string",
            RemoteVolumeRegion = "string",
            ReplicationId = "string",
            ReplicationSchedule = "string",
        },
        Snapshot = new AzureNative.NetApp.Inputs.VolumeSnapshotPropertiesArgs
        {
            SnapshotPolicyId = "string",
        },
        VolumeRelocation = new AzureNative.NetApp.Inputs.VolumeRelocationPropertiesArgs
        {
            RelocationRequested = false,
        },
    },
    CapacityPoolResourceId = "string",
    SecurityStyle = "string",
    ServiceLevel = "string",
    SmbAccessBasedEnumeration = "string",
    SmbContinuouslyAvailable = false,
    SmbEncryption = false,
    SmbNonBrowsable = "string",
    SnapshotDirectoryVisible = false,
    SnapshotId = "string",
    BackupId = "string",
    Tags = 
    {
        { "string", "string" },
    },
    ThroughputMibps = 0,
    UnixPermissions = "string",
    AvsDataStore = "string",
    VolumeName = "string",
    VolumeSpecName = "string",
    VolumeType = "string",
    Zones = new[]
    {
        "string",
    },
});
example, err := netapp.NewVolume(ctx, "examplevolumeResourceResourceFromNetapp", &netapp.VolumeArgs{
	CreationToken:     pulumi.String("string"),
	UsageThreshold:    pulumi.Float64(0),
	SubnetId:          pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	PoolName:          pulumi.String("string"),
	AccountName:       pulumi.String("string"),
	PlacementRules: netapp.PlacementKeyValuePairsArray{
		&netapp.PlacementKeyValuePairsArgs{
			Key:   pulumi.String("string"),
			Value: pulumi.String("string"),
		},
	},
	ProximityPlacementGroup: pulumi.String("string"),
	DefaultGroupQuotaInKiBs: pulumi.Float64(0),
	DefaultUserQuotaInKiBs:  pulumi.Float64(0),
	DeleteBaseSnapshot:      pulumi.Bool(false),
	EnableSubvolumes:        pulumi.String("string"),
	EncryptionKeySource:     pulumi.String("string"),
	ExportPolicy: &netapp.VolumePropertiesExportPolicyArgs{
		Rules: netapp.ExportPolicyRuleArray{
			&netapp.ExportPolicyRuleArgs{
				AllowedClients:      pulumi.String("string"),
				ChownMode:           pulumi.String("string"),
				Cifs:                pulumi.Bool(false),
				HasRootAccess:       pulumi.Bool(false),
				Kerberos5ReadOnly:   pulumi.Bool(false),
				Kerberos5ReadWrite:  pulumi.Bool(false),
				Kerberos5iReadOnly:  pulumi.Bool(false),
				Kerberos5iReadWrite: pulumi.Bool(false),
				Kerberos5pReadOnly:  pulumi.Bool(false),
				Kerberos5pReadWrite: pulumi.Bool(false),
				Nfsv3:               pulumi.Bool(false),
				Nfsv41:              pulumi.Bool(false),
				RuleIndex:           pulumi.Int(0),
				UnixReadOnly:        pulumi.Bool(false),
				UnixReadWrite:       pulumi.Bool(false),
			},
		},
	},
	IsDefaultQuotaEnabled:             pulumi.Bool(false),
	IsLargeVolume:                     pulumi.Bool(false),
	IsRestoring:                       pulumi.Bool(false),
	KerberosEnabled:                   pulumi.Bool(false),
	KeyVaultPrivateEndpointResourceId: pulumi.String("string"),
	LdapEnabled:                       pulumi.Bool(false),
	Location:                          pulumi.String("string"),
	NetworkFeatures:                   pulumi.String("string"),
	CoolnessPeriod:                    pulumi.Int(0),
	CoolAccess:                        pulumi.Bool(false),
	ProtocolTypes: pulumi.StringArray{
		pulumi.String("string"),
	},
	DataProtection: &netapp.VolumePropertiesDataProtectionArgs{
		Backup: &netapp.VolumeBackupPropertiesArgs{
			BackupEnabled:  pulumi.Bool(false),
			BackupPolicyId: pulumi.String("string"),
			PolicyEnforced: pulumi.Bool(false),
		},
		Replication: &netapp.ReplicationObjectArgs{
			RemoteVolumeResourceId: pulumi.String("string"),
			EndpointType:           pulumi.String("string"),
			RemoteVolumeRegion:     pulumi.String("string"),
			ReplicationId:          pulumi.String("string"),
			ReplicationSchedule:    pulumi.String("string"),
		},
		Snapshot: &netapp.VolumeSnapshotPropertiesArgs{
			SnapshotPolicyId: pulumi.String("string"),
		},
		VolumeRelocation: &netapp.VolumeRelocationPropertiesArgs{
			RelocationRequested: pulumi.Bool(false),
		},
	},
	CapacityPoolResourceId:    pulumi.String("string"),
	SecurityStyle:             pulumi.String("string"),
	ServiceLevel:              pulumi.String("string"),
	SmbAccessBasedEnumeration: pulumi.String("string"),
	SmbContinuouslyAvailable:  pulumi.Bool(false),
	SmbEncryption:             pulumi.Bool(false),
	SmbNonBrowsable:           pulumi.String("string"),
	SnapshotDirectoryVisible:  pulumi.Bool(false),
	SnapshotId:                pulumi.String("string"),
	BackupId:                  pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	ThroughputMibps: pulumi.Float64(0),
	UnixPermissions: pulumi.String("string"),
	AvsDataStore:    pulumi.String("string"),
	VolumeName:      pulumi.String("string"),
	VolumeSpecName:  pulumi.String("string"),
	VolumeType:      pulumi.String("string"),
	Zones: pulumi.StringArray{
		pulumi.String("string"),
	},
})
var examplevolumeResourceResourceFromNetapp = new Volume("examplevolumeResourceResourceFromNetapp", VolumeArgs.builder()
    .creationToken("string")
    .usageThreshold(0)
    .subnetId("string")
    .resourceGroupName("string")
    .poolName("string")
    .accountName("string")
    .placementRules(PlacementKeyValuePairsArgs.builder()
        .key("string")
        .value("string")
        .build())
    .proximityPlacementGroup("string")
    .defaultGroupQuotaInKiBs(0)
    .defaultUserQuotaInKiBs(0)
    .deleteBaseSnapshot(false)
    .enableSubvolumes("string")
    .encryptionKeySource("string")
    .exportPolicy(VolumePropertiesExportPolicyArgs.builder()
        .rules(ExportPolicyRuleArgs.builder()
            .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)
            .build())
        .build())
    .isDefaultQuotaEnabled(false)
    .isLargeVolume(false)
    .isRestoring(false)
    .kerberosEnabled(false)
    .keyVaultPrivateEndpointResourceId("string")
    .ldapEnabled(false)
    .location("string")
    .networkFeatures("string")
    .coolnessPeriod(0)
    .coolAccess(false)
    .protocolTypes("string")
    .dataProtection(VolumePropertiesDataProtectionArgs.builder()
        .backup(VolumeBackupPropertiesArgs.builder()
            .backupEnabled(false)
            .backupPolicyId("string")
            .policyEnforced(false)
            .build())
        .replication(ReplicationObjectArgs.builder()
            .remoteVolumeResourceId("string")
            .endpointType("string")
            .remoteVolumeRegion("string")
            .replicationId("string")
            .replicationSchedule("string")
            .build())
        .snapshot(VolumeSnapshotPropertiesArgs.builder()
            .snapshotPolicyId("string")
            .build())
        .volumeRelocation(VolumeRelocationPropertiesArgs.builder()
            .relocationRequested(false)
            .build())
        .build())
    .capacityPoolResourceId("string")
    .securityStyle("string")
    .serviceLevel("string")
    .smbAccessBasedEnumeration("string")
    .smbContinuouslyAvailable(false)
    .smbEncryption(false)
    .smbNonBrowsable("string")
    .snapshotDirectoryVisible(false)
    .snapshotId("string")
    .backupId("string")
    .tags(Map.of("string", "string"))
    .throughputMibps(0)
    .unixPermissions("string")
    .avsDataStore("string")
    .volumeName("string")
    .volumeSpecName("string")
    .volumeType("string")
    .zones("string")
    .build());
examplevolume_resource_resource_from_netapp = azure_native.netapp.Volume("examplevolumeResourceResourceFromNetapp",
    creation_token="string",
    usage_threshold=0,
    subnet_id="string",
    resource_group_name="string",
    pool_name="string",
    account_name="string",
    placement_rules=[{
        "key": "string",
        "value": "string",
    }],
    proximity_placement_group="string",
    default_group_quota_in_ki_bs=0,
    default_user_quota_in_ki_bs=0,
    delete_base_snapshot=False,
    enable_subvolumes="string",
    encryption_key_source="string",
    export_policy={
        "rules": [{
            "allowed_clients": "string",
            "chown_mode": "string",
            "cifs": False,
            "has_root_access": False,
            "kerberos5_read_only": False,
            "kerberos5_read_write": False,
            "kerberos5i_read_only": False,
            "kerberos5i_read_write": False,
            "kerberos5p_read_only": False,
            "kerberos5p_read_write": False,
            "nfsv3": False,
            "nfsv41": False,
            "rule_index": 0,
            "unix_read_only": False,
            "unix_read_write": False,
        }],
    },
    is_default_quota_enabled=False,
    is_large_volume=False,
    is_restoring=False,
    kerberos_enabled=False,
    key_vault_private_endpoint_resource_id="string",
    ldap_enabled=False,
    location="string",
    network_features="string",
    coolness_period=0,
    cool_access=False,
    protocol_types=["string"],
    data_protection={
        "backup": {
            "backup_enabled": False,
            "backup_policy_id": "string",
            "policy_enforced": False,
        },
        "replication": {
            "remote_volume_resource_id": "string",
            "endpoint_type": "string",
            "remote_volume_region": "string",
            "replication_id": "string",
            "replication_schedule": "string",
        },
        "snapshot": {
            "snapshot_policy_id": "string",
        },
        "volume_relocation": {
            "relocation_requested": False,
        },
    },
    capacity_pool_resource_id="string",
    security_style="string",
    service_level="string",
    smb_access_based_enumeration="string",
    smb_continuously_available=False,
    smb_encryption=False,
    smb_non_browsable="string",
    snapshot_directory_visible=False,
    snapshot_id="string",
    backup_id="string",
    tags={
        "string": "string",
    },
    throughput_mibps=0,
    unix_permissions="string",
    avs_data_store="string",
    volume_name="string",
    volume_spec_name="string",
    volume_type="string",
    zones=["string"])
const examplevolumeResourceResourceFromNetapp = new azure_native.netapp.Volume("examplevolumeResourceResourceFromNetapp", {
    creationToken: "string",
    usageThreshold: 0,
    subnetId: "string",
    resourceGroupName: "string",
    poolName: "string",
    accountName: "string",
    placementRules: [{
        key: "string",
        value: "string",
    }],
    proximityPlacementGroup: "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",
    ldapEnabled: false,
    location: "string",
    networkFeatures: "string",
    coolnessPeriod: 0,
    coolAccess: false,
    protocolTypes: ["string"],
    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,
        },
    },
    capacityPoolResourceId: "string",
    securityStyle: "string",
    serviceLevel: "string",
    smbAccessBasedEnumeration: "string",
    smbContinuouslyAvailable: false,
    smbEncryption: false,
    smbNonBrowsable: "string",
    snapshotDirectoryVisible: false,
    snapshotId: "string",
    backupId: "string",
    tags: {
        string: "string",
    },
    throughputMibps: 0,
    unixPermissions: "string",
    avsDataStore: "string",
    volumeName: "string",
    volumeSpecName: "string",
    volumeType: "string",
    zones: ["string"],
});
type: azure-native:netapp:Volume
properties:
    accountName: string
    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
    location: string
    networkFeatures: string
    placementRules:
        - key: string
          value: string
    poolName: string
    protocolTypes:
        - string
    proximityPlacementGroup: string
    resourceGroupName: 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
    volumeName: string
    volumeSpecName: string
    volumeType: string
    zones:
        - string
Volume 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 Volume resource accepts the following input properties:
- AccountName string
- The name of the NetApp account
- CreationToken string
- A unique file path for the volume. Used when creating mount targets
- PoolName string
- The name of the capacity pool
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- SubnetId string
- The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes
- UsageThreshold 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.
- AvsData string | Pulumi.Store Azure Native. Net App. Avs Data Store 
- 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.
- CapacityPool stringResource Id 
- 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.Azure Native. Net App. Inputs. Volume Properties Data Protection 
- DataProtection type volumes include an object containing details of the replication
- DefaultGroup doubleQuota In Ki Bs 
- Default group quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies.
- DefaultUser doubleQuota In Ki Bs 
- Default user quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies .
- DeleteBase boolSnapshot 
- 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.Azure Native. Net App. Enable Subvolumes 
- Flag indicating whether subvolume operations are enabled on the volume
- EncryptionKey string | Pulumi.Source Azure Native. Net App. Encryption Key Source 
- 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.Azure Native. Net App. Inputs. Volume Properties Export Policy 
- Set of export policy rules
- IsDefault boolQuota Enabled 
- Specifies if default quota is enabled for the volume.
- IsLarge boolVolume 
- 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
- KeyVault stringPrivate Endpoint Resource Id 
- 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.
- Location string
- The geo-location where the resource lives
- NetworkFeatures string | Pulumi.Azure Native. Net App. Network Features 
- Basic network, or Standard features available to the volume.
- PlacementRules List<Pulumi.Azure Native. Net App. Inputs. Placement Key Value Pairs> 
- Application specific placement rules for the particular volume
- ProtocolTypes List<string>
- Set of protocol types, default NFSv3, CIFS for SMB protocol
- ProximityPlacement stringGroup 
- Proximity placement group associated with the volume
- SecurityStyle string | Pulumi.Azure Native. Net App. Security Style 
- The security style of volume, default unix, defaults to ntfs for dual protocol or CIFS protocol
- ServiceLevel string | Pulumi.Azure Native. Net App. Service Level 
- The service level of the file system
- SmbAccess string | Pulumi.Based Enumeration Azure Native. Net App. Smb Access Based Enumeration 
- Enables access based enumeration share property for SMB Shares. Only applicable for SMB/DualProtocol volume
- SmbContinuously boolAvailable 
- 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
- SmbNon string | Pulumi.Browsable Azure Native. Net App. Smb Non Browsable 
- Enables non browsable property for SMB Shares. Only applicable for SMB/DualProtocol volume
- SnapshotDirectory boolVisible 
- 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.
- 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.
- VolumeName string
- The name of the volume
- VolumeSpec stringName 
- 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
- Zones List<string>
- Availability Zone
- AccountName string
- The name of the NetApp account
- CreationToken string
- A unique file path for the volume. Used when creating mount targets
- PoolName string
- The name of the capacity pool
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- SubnetId string
- The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes
- UsageThreshold 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.
- AvsData string | AvsStore Data Store 
- 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.
- CapacityPool stringResource Id 
- 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 VolumeProperties Data Protection Args 
- DataProtection type volumes include an object containing details of the replication
- DefaultGroup float64Quota In Ki Bs 
- Default group quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies.
- DefaultUser float64Quota In Ki Bs 
- Default user quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies .
- DeleteBase boolSnapshot 
- 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
- EncryptionKey string | EncryptionSource Key Source 
- 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 VolumeProperties Export Policy Args 
- Set of export policy rules
- IsDefault boolQuota Enabled 
- Specifies if default quota is enabled for the volume.
- IsLarge boolVolume 
- 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
- KeyVault stringPrivate Endpoint Resource Id 
- 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.
- Location string
- The geo-location where the resource lives
- NetworkFeatures string | NetworkFeatures 
- Basic network, or Standard features available to the volume.
- PlacementRules []PlacementKey Value Pairs Args 
- Application specific placement rules for the particular volume
- ProtocolTypes []string
- Set of protocol types, default NFSv3, CIFS for SMB protocol
- ProximityPlacement stringGroup 
- 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
- SmbAccess string | SmbBased Enumeration Access Based Enumeration 
- Enables access based enumeration share property for SMB Shares. Only applicable for SMB/DualProtocol volume
- SmbContinuously boolAvailable 
- 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
- SmbNon string | SmbBrowsable Non Browsable 
- Enables non browsable property for SMB Shares. Only applicable for SMB/DualProtocol volume
- SnapshotDirectory boolVisible 
- 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.
- 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.
- VolumeName string
- The name of the volume
- VolumeSpec stringName 
- 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
- Zones []string
- Availability Zone
- accountName String
- The name of the NetApp account
- creationToken String
- A unique file path for the volume. Used when creating mount targets
- poolName String
- The name of the capacity pool
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- subnetId String
- The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes
- usageThreshold 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.
- avsData String | AvsStore Data Store 
- 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.
- capacityPool StringResource Id 
- 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 VolumeProperties Data Protection 
- DataProtection type volumes include an object containing details of the replication
- defaultGroup DoubleQuota In Ki Bs 
- Default group quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies.
- defaultUser DoubleQuota In Ki Bs 
- Default user quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies .
- deleteBase BooleanSnapshot 
- 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
- encryptionKey String | EncryptionSource Key Source 
- 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 VolumeProperties Export Policy 
- Set of export policy rules
- isDefault BooleanQuota Enabled 
- Specifies if default quota is enabled for the volume.
- isLarge BooleanVolume 
- 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
- keyVault StringPrivate Endpoint Resource Id 
- 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.
- location String
- The geo-location where the resource lives
- networkFeatures String | NetworkFeatures 
- Basic network, or Standard features available to the volume.
- placementRules List<PlacementKey Value Pairs> 
- Application specific placement rules for the particular volume
- protocolTypes List<String>
- Set of protocol types, default NFSv3, CIFS for SMB protocol
- proximityPlacement StringGroup 
- 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
- smbAccess String | SmbBased Enumeration Access Based Enumeration 
- Enables access based enumeration share property for SMB Shares. Only applicable for SMB/DualProtocol volume
- smbContinuously BooleanAvailable 
- 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
- smbNon String | SmbBrowsable Non Browsable 
- Enables non browsable property for SMB Shares. Only applicable for SMB/DualProtocol volume
- snapshotDirectory BooleanVisible 
- 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.
- 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.
- volumeName String
- The name of the volume
- volumeSpec StringName 
- 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
- zones List<String>
- Availability Zone
- accountName string
- The name of the NetApp account
- creationToken string
- A unique file path for the volume. Used when creating mount targets
- poolName string
- The name of the capacity pool
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- subnetId string
- The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes
- usageThreshold 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.
- avsData string | AvsStore Data Store 
- 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.
- capacityPool stringResource Id 
- 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 VolumeProperties Data Protection 
- DataProtection type volumes include an object containing details of the replication
- defaultGroup numberQuota In Ki Bs 
- Default group quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies.
- defaultUser numberQuota In Ki Bs 
- Default user quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies .
- deleteBase booleanSnapshot 
- 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
- encryptionKey string | EncryptionSource Key Source 
- 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 VolumeProperties Export Policy 
- Set of export policy rules
- isDefault booleanQuota Enabled 
- Specifies if default quota is enabled for the volume.
- isLarge booleanVolume 
- 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
- keyVault stringPrivate Endpoint Resource Id 
- 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.
- location string
- The geo-location where the resource lives
- networkFeatures string | NetworkFeatures 
- Basic network, or Standard features available to the volume.
- placementRules PlacementKey Value Pairs[] 
- Application specific placement rules for the particular volume
- protocolTypes string[]
- Set of protocol types, default NFSv3, CIFS for SMB protocol
- proximityPlacement stringGroup 
- 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
- smbAccess string | SmbBased Enumeration Access Based Enumeration 
- Enables access based enumeration share property for SMB Shares. Only applicable for SMB/DualProtocol volume
- smbContinuously booleanAvailable 
- 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
- smbNon string | SmbBrowsable Non Browsable 
- Enables non browsable property for SMB Shares. Only applicable for SMB/DualProtocol volume
- snapshotDirectory booleanVisible 
- 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.
- {[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.
- volumeName string
- The name of the volume
- volumeSpec stringName 
- 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
- zones string[]
- Availability Zone
- account_name str
- The name of the NetApp account
- creation_token str
- A unique file path for the volume. Used when creating mount targets
- pool_name str
- The name of the capacity pool
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- subnet_id str
- The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes
- usage_threshold 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_ str | Avsstore Data Store 
- 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_ strresource_ id 
- 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 VolumeProperties Data Protection Args 
- DataProtection type volumes include an object containing details of the replication
- default_group_ floatquota_ in_ ki_ bs 
- Default group quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies.
- default_user_ floatquota_ in_ ki_ bs 
- Default user quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies .
- delete_base_ boolsnapshot 
- 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_ str | Encryptionsource Key Source 
- 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 VolumeProperties Export Policy Args 
- Set of export policy rules
- is_default_ boolquota_ enabled 
- Specifies if default quota is enabled for the volume.
- is_large_ boolvolume 
- 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_ strprivate_ endpoint_ resource_ id 
- 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.
- location str
- The geo-location where the resource lives
- network_features str | NetworkFeatures 
- Basic network, or Standard features available to the volume.
- placement_rules Sequence[PlacementKey Value Pairs Args] 
- Application specific placement rules for the particular volume
- protocol_types Sequence[str]
- Set of protocol types, default NFSv3, CIFS for SMB protocol
- proximity_placement_ strgroup 
- 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_ str | Smbbased_ enumeration Access Based Enumeration 
- Enables access based enumeration share property for SMB Shares. Only applicable for SMB/DualProtocol volume
- smb_continuously_ boolavailable 
- 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_ str | Smbbrowsable Non Browsable 
- Enables non browsable property for SMB Shares. Only applicable for SMB/DualProtocol volume
- snapshot_directory_ boolvisible 
- 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.
- 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_name str
- The name of the volume
- volume_spec_ strname 
- 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
- zones Sequence[str]
- Availability Zone
- accountName String
- The name of the NetApp account
- creationToken String
- A unique file path for the volume. Used when creating mount targets
- poolName String
- The name of the capacity pool
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- subnetId String
- The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes
- usageThreshold 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.
- avsData String | "Enabled" | "Disabled"Store 
- 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.
- capacityPool StringResource Id 
- 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
- defaultGroup NumberQuota In Ki Bs 
- Default group quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies.
- defaultUser NumberQuota In Ki Bs 
- Default user quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies .
- deleteBase BooleanSnapshot 
- 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
- encryptionKey String | "Microsoft.Source Net App" | "Microsoft. Key Vault" 
- 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
- isDefault BooleanQuota Enabled 
- Specifies if default quota is enabled for the volume.
- isLarge BooleanVolume 
- 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
- keyVault StringPrivate Endpoint Resource Id 
- 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.
- location String
- The geo-location where the resource lives
- 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
- proximityPlacement StringGroup 
- 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
- smbAccess String | "Disabled" | "Enabled"Based Enumeration 
- Enables access based enumeration share property for SMB Shares. Only applicable for SMB/DualProtocol volume
- smbContinuously BooleanAvailable 
- 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
- smbNon String | "Disabled" | "Enabled"Browsable 
- Enables non browsable property for SMB Shares. Only applicable for SMB/DualProtocol volume
- snapshotDirectory BooleanVisible 
- 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.
- 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.
- volumeName String
- The name of the volume
- volumeSpec StringName 
- 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
- zones List<String>
- Availability Zone
Outputs
All input properties are implicitly available as output properties. Additionally, the Volume resource produces the following output properties:
- ActualThroughput doubleMibps 
- Actual throughput in MiB/s for auto qosType volumes calculated based on size and serviceLevel
- BaremetalTenant stringId 
- Unique Baremetal Tenant Identifier.
- CloneProgress 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.
- DataStore List<string>Resource Id 
- Data store resource unique identifier
- Encrypted bool
- Specifies if the volume is encrypted or not. Only available on volumes created or updated after 2022-01-01.
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- FileAccess stringLogs 
- Flag indicating whether file access logs are enabled for the volume, based on active diagnostic settings present on the volume.
- FileSystem stringId 
- Unique FileSystem Identifier.
- Id string
- The provider-assigned unique ID for this managed resource.
- MaximumNumber doubleOf Files 
- 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 List<Pulumi.Azure Native. Net App. Outputs. Mount Target Properties Response> 
- List of mount targets
- Name string
- The name of the resource
- NetworkSibling stringSet Id 
- Network Sibling Set ID for the the group of volumes sharing networking resources.
- OriginatingResource stringId 
- Id of the snapshot or backup that the volume is restored from.
- ProvisionedAvailability stringZone 
- The availability zone where the volume is provisioned. This refers to the logical availability zone where the volume resides.
- ProvisioningState string
- Azure lifecycle management
- StorageTo stringNetwork Proximity 
- Provides storage to network proximity information for the volume.
- SystemData Pulumi.Azure Native. Net App. Outputs. System Data Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- T2Network string
- T2 network information
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- VolumeGroup stringName 
- Volume Group Name
- ActualThroughput float64Mibps 
- Actual throughput in MiB/s for auto qosType volumes calculated based on size and serviceLevel
- BaremetalTenant stringId 
- Unique Baremetal Tenant Identifier.
- CloneProgress 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.
- DataStore []stringResource Id 
- Data store resource unique identifier
- Encrypted bool
- Specifies if the volume is encrypted or not. Only available on volumes created or updated after 2022-01-01.
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- FileAccess stringLogs 
- Flag indicating whether file access logs are enabled for the volume, based on active diagnostic settings present on the volume.
- FileSystem stringId 
- Unique FileSystem Identifier.
- Id string
- The provider-assigned unique ID for this managed resource.
- MaximumNumber float64Of Files 
- 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 []MountTarget Properties Response 
- List of mount targets
- Name string
- The name of the resource
- NetworkSibling stringSet Id 
- Network Sibling Set ID for the the group of volumes sharing networking resources.
- OriginatingResource stringId 
- Id of the snapshot or backup that the volume is restored from.
- ProvisionedAvailability stringZone 
- The availability zone where the volume is provisioned. This refers to the logical availability zone where the volume resides.
- ProvisioningState string
- Azure lifecycle management
- StorageTo stringNetwork Proximity 
- Provides storage to network proximity information for the volume.
- SystemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- T2Network string
- T2 network information
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- VolumeGroup stringName 
- Volume Group Name
- actualThroughput DoubleMibps 
- Actual throughput in MiB/s for auto qosType volumes calculated based on size and serviceLevel
- baremetalTenant StringId 
- Unique Baremetal Tenant Identifier.
- cloneProgress 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.
- dataStore List<String>Resource Id 
- Data store resource unique identifier
- encrypted Boolean
- Specifies if the volume is encrypted or not. Only available on volumes created or updated after 2022-01-01.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- fileAccess StringLogs 
- Flag indicating whether file access logs are enabled for the volume, based on active diagnostic settings present on the volume.
- fileSystem StringId 
- Unique FileSystem Identifier.
- id String
- The provider-assigned unique ID for this managed resource.
- maximumNumber DoubleOf Files 
- 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 List<MountTarget Properties Response> 
- List of mount targets
- name String
- The name of the resource
- networkSibling StringSet Id 
- Network Sibling Set ID for the the group of volumes sharing networking resources.
- originatingResource StringId 
- Id of the snapshot or backup that the volume is restored from.
- provisionedAvailability StringZone 
- The availability zone where the volume is provisioned. This refers to the logical availability zone where the volume resides.
- provisioningState String
- Azure lifecycle management
- storageTo StringNetwork Proximity 
- Provides storage to network proximity information for the volume.
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- t2Network String
- T2 network information
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- volumeGroup StringName 
- Volume Group Name
- actualThroughput numberMibps 
- Actual throughput in MiB/s for auto qosType volumes calculated based on size and serviceLevel
- baremetalTenant stringId 
- Unique Baremetal Tenant Identifier.
- cloneProgress 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.
- dataStore string[]Resource Id 
- Data store resource unique identifier
- encrypted boolean
- Specifies if the volume is encrypted or not. Only available on volumes created or updated after 2022-01-01.
- etag string
- A unique read-only string that changes whenever the resource is updated.
- fileAccess stringLogs 
- Flag indicating whether file access logs are enabled for the volume, based on active diagnostic settings present on the volume.
- fileSystem stringId 
- Unique FileSystem Identifier.
- id string
- The provider-assigned unique ID for this managed resource.
- maximumNumber numberOf Files 
- 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 MountTarget Properties Response[] 
- List of mount targets
- name string
- The name of the resource
- networkSibling stringSet Id 
- Network Sibling Set ID for the the group of volumes sharing networking resources.
- originatingResource stringId 
- Id of the snapshot or backup that the volume is restored from.
- provisionedAvailability stringZone 
- The availability zone where the volume is provisioned. This refers to the logical availability zone where the volume resides.
- provisioningState string
- Azure lifecycle management
- storageTo stringNetwork Proximity 
- Provides storage to network proximity information for the volume.
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- t2Network string
- T2 network information
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- volumeGroup stringName 
- Volume Group Name
- actual_throughput_ floatmibps 
- Actual throughput in MiB/s for auto qosType volumes calculated based on size and serviceLevel
- baremetal_tenant_ strid 
- Unique Baremetal Tenant Identifier.
- clone_progress 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.
- data_store_ Sequence[str]resource_ id 
- Data store resource unique identifier
- encrypted bool
- Specifies if the volume is encrypted or not. Only available on volumes created or updated after 2022-01-01.
- etag str
- A unique read-only string that changes whenever the resource is updated.
- file_access_ strlogs 
- Flag indicating whether file access logs are enabled for the volume, based on active diagnostic settings present on the volume.
- file_system_ strid 
- Unique FileSystem Identifier.
- id str
- The provider-assigned unique ID for this managed resource.
- maximum_number_ floatof_ files 
- 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 Sequence[MountTarget Properties Response] 
- List of mount targets
- name str
- The name of the resource
- network_sibling_ strset_ id 
- Network Sibling Set ID for the the group of volumes sharing networking resources.
- originating_resource_ strid 
- Id of the snapshot or backup that the volume is restored from.
- provisioned_availability_ strzone 
- The availability zone where the volume is provisioned. This refers to the logical availability zone where the volume resides.
- provisioning_state str
- Azure lifecycle management
- storage_to_ strnetwork_ proximity 
- Provides storage to network proximity information for the volume.
- system_data SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- t2_network str
- T2 network information
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- volume_group_ strname 
- Volume Group Name
- actualThroughput NumberMibps 
- Actual throughput in MiB/s for auto qosType volumes calculated based on size and serviceLevel
- baremetalTenant StringId 
- Unique Baremetal Tenant Identifier.
- cloneProgress 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.
- dataStore List<String>Resource Id 
- Data store resource unique identifier
- encrypted Boolean
- Specifies if the volume is encrypted or not. Only available on volumes created or updated after 2022-01-01.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- fileAccess StringLogs 
- Flag indicating whether file access logs are enabled for the volume, based on active diagnostic settings present on the volume.
- fileSystem StringId 
- Unique FileSystem Identifier.
- id String
- The provider-assigned unique ID for this managed resource.
- maximumNumber NumberOf Files 
- 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 List<Property Map>
- List of mount targets
- name String
- The name of the resource
- networkSibling StringSet Id 
- Network Sibling Set ID for the the group of volumes sharing networking resources.
- originatingResource StringId 
- Id of the snapshot or backup that the volume is restored from.
- provisionedAvailability StringZone 
- The availability zone where the volume is provisioned. This refers to the logical availability zone where the volume resides.
- provisioningState String
- Azure lifecycle management
- storageTo StringNetwork Proximity 
- Provides storage to network proximity information for the volume.
- systemData Property Map
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- t2Network String
- T2 network information
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- volumeGroup StringName 
- Volume Group Name
Supporting Types
AvsDataStore, AvsDataStoreArgs      
- Enabled
- EnabledavsDataStore is enabled
- Disabled
- DisabledavsDataStore is disabled
- AvsData Store Enabled 
- EnabledavsDataStore is enabled
- AvsData Store 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
- "Enabled"
- EnabledavsDataStore is enabled
- "Disabled"
- DisabledavsDataStore is disabled
ChownMode, ChownModeArgs    
- Restricted
- Restricted
- Unrestricted
- Unrestricted
- ChownMode Restricted 
- Restricted
- ChownMode Unrestricted 
- 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
- EnableSubvolumes Enabled 
- Enabledsubvolumes are enabled
- EnableSubvolumes 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
- "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
- EncryptionKey Source_Microsoft_Net App 
- Microsoft.NetAppMicrosoft-managed key encryption
- EncryptionKey Source_Microsoft_Key Vault 
- 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.Net App" 
- Microsoft.NetAppMicrosoft-managed key encryption
- "Microsoft.Key Vault" 
- Microsoft.KeyVaultCustomer-managed key encryption
EndpointType, EndpointTypeArgs    
- Src
- src
- Dst
- dst
- EndpointType Src 
- src
- EndpointType Dst 
- 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.Azure Native. Net App. Chown Mode 
- 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
- HasRoot boolAccess 
- 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
- Kerberos5iRead boolOnly 
- Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
- Kerberos5iRead boolWrite 
- Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
- Kerberos5pRead boolOnly 
- Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
- Kerberos5pRead boolWrite 
- 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
- UnixRead boolOnly 
- Read only access
- UnixRead boolWrite 
- 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
- HasRoot boolAccess 
- 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
- Kerberos5iRead boolOnly 
- Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
- Kerberos5iRead boolWrite 
- Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
- Kerberos5pRead boolOnly 
- Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
- Kerberos5pRead boolWrite 
- 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
- UnixRead boolOnly 
- Read only access
- UnixRead boolWrite 
- 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
- hasRoot BooleanAccess 
- 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
- kerberos5iRead BooleanOnly 
- Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5iRead BooleanWrite 
- Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
- kerberos5pRead BooleanOnly 
- Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5pRead BooleanWrite 
- 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
- unixRead BooleanOnly 
- Read only access
- unixRead BooleanWrite 
- 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
- hasRoot booleanAccess 
- 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
- kerberos5iRead booleanOnly 
- Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5iRead booleanWrite 
- Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
- kerberos5pRead booleanOnly 
- Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5pRead booleanWrite 
- 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
- unixRead booleanOnly 
- Read only access
- unixRead booleanWrite 
- 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_ boolaccess 
- Has root access to volume
- kerberos5_read_ boolonly 
- Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5_read_ boolwrite 
- Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
- kerberos5i_read_ boolonly 
- Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5i_read_ boolwrite 
- Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
- kerberos5p_read_ boolonly 
- Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5p_read_ boolwrite 
- 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_ boolonly 
- Read only access
- unix_read_ boolwrite 
- 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
- hasRoot BooleanAccess 
- 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
- kerberos5iRead BooleanOnly 
- Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5iRead BooleanWrite 
- Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
- kerberos5pRead BooleanOnly 
- Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5pRead BooleanWrite 
- 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
- unixRead BooleanOnly 
- Read only access
- unixRead BooleanWrite 
- 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
- HasRoot boolAccess 
- 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
- Kerberos5iRead boolOnly 
- Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
- Kerberos5iRead boolWrite 
- Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
- Kerberos5pRead boolOnly 
- Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
- Kerberos5pRead boolWrite 
- 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
- UnixRead boolOnly 
- Read only access
- UnixRead boolWrite 
- 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
- HasRoot boolAccess 
- 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
- Kerberos5iRead boolOnly 
- Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
- Kerberos5iRead boolWrite 
- Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
- Kerberos5pRead boolOnly 
- Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
- Kerberos5pRead boolWrite 
- 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
- UnixRead boolOnly 
- Read only access
- UnixRead boolWrite 
- 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
- hasRoot BooleanAccess 
- 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
- kerberos5iRead BooleanOnly 
- Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5iRead BooleanWrite 
- Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
- kerberos5pRead BooleanOnly 
- Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5pRead BooleanWrite 
- 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
- unixRead BooleanOnly 
- Read only access
- unixRead BooleanWrite 
- 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
- hasRoot booleanAccess 
- 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
- kerberos5iRead booleanOnly 
- Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5iRead booleanWrite 
- Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
- kerberos5pRead booleanOnly 
- Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5pRead booleanWrite 
- 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
- unixRead booleanOnly 
- Read only access
- unixRead booleanWrite 
- 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_ boolaccess 
- Has root access to volume
- kerberos5_read_ boolonly 
- Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5_read_ boolwrite 
- Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
- kerberos5i_read_ boolonly 
- Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5i_read_ boolwrite 
- Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
- kerberos5p_read_ boolonly 
- Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5p_read_ boolwrite 
- 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_ boolonly 
- Read only access
- unix_read_ boolwrite 
- 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
- hasRoot BooleanAccess 
- 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
- kerberos5iRead BooleanOnly 
- Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5iRead BooleanWrite 
- Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
- kerberos5pRead BooleanOnly 
- Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5pRead BooleanWrite 
- 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
- unixRead BooleanOnly 
- Read only access
- unixRead BooleanWrite 
- Read and write access
MountTargetPropertiesResponse, MountTargetPropertiesResponseArgs        
- FileSystem stringId 
- UUID v4 used to identify the MountTarget
- IpAddress string
- The mount target's IPv4 address
- MountTarget stringId 
- UUID v4 used to identify the MountTarget
- SmbServer stringFqdn 
- The SMB server's Fully Qualified Domain Name, FQDN
- FileSystem stringId 
- UUID v4 used to identify the MountTarget
- IpAddress string
- The mount target's IPv4 address
- MountTarget stringId 
- UUID v4 used to identify the MountTarget
- SmbServer stringFqdn 
- The SMB server's Fully Qualified Domain Name, FQDN
- fileSystem StringId 
- UUID v4 used to identify the MountTarget
- ipAddress String
- The mount target's IPv4 address
- mountTarget StringId 
- UUID v4 used to identify the MountTarget
- smbServer StringFqdn 
- The SMB server's Fully Qualified Domain Name, FQDN
- fileSystem stringId 
- UUID v4 used to identify the MountTarget
- ipAddress string
- The mount target's IPv4 address
- mountTarget stringId 
- UUID v4 used to identify the MountTarget
- smbServer stringFqdn 
- The SMB server's Fully Qualified Domain Name, FQDN
- file_system_ strid 
- UUID v4 used to identify the MountTarget
- ip_address str
- The mount target's IPv4 address
- mount_target_ strid 
- UUID v4 used to identify the MountTarget
- smb_server_ strfqdn 
- The SMB server's Fully Qualified Domain Name, FQDN
- fileSystem StringId 
- UUID v4 used to identify the MountTarget
- ipAddress String
- The mount target's IPv4 address
- mountTarget StringId 
- UUID v4 used to identify the MountTarget
- smbServer StringFqdn 
- The SMB server's Fully Qualified Domain Name, FQDN
NetworkFeatures, NetworkFeaturesArgs    
- Basic
- BasicBasic network feature.
- Standard
- StandardStandard network feature.
- NetworkFeatures Basic 
- BasicBasic network feature.
- NetworkFeatures 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.
- "Basic"
- BasicBasic network feature.
- "Standard"
- StandardStandard network feature.
PlacementKeyValuePairs, PlacementKeyValuePairsArgs        
PlacementKeyValuePairsResponse, PlacementKeyValuePairsResponseArgs          
ReplicationObject, ReplicationObjectArgs    
- RemoteVolume stringResource Id 
- The resource ID of the remote volume.
- EndpointType string | Pulumi.Azure Native. Net App. Endpoint Type 
- Indicates whether the local volume is the source or destination for the Volume Replication
- RemoteVolume stringRegion 
- The remote region for the other end of the Volume Replication.
- ReplicationId string
- Id
- ReplicationSchedule string | Pulumi.Azure Native. Net App. Replication Schedule 
- Schedule
- RemoteVolume stringResource Id 
- The resource ID of the remote volume.
- EndpointType string | EndpointType 
- Indicates whether the local volume is the source or destination for the Volume Replication
- RemoteVolume stringRegion 
- The remote region for the other end of the Volume Replication.
- ReplicationId string
- Id
- ReplicationSchedule string | ReplicationSchedule 
- Schedule
- remoteVolume StringResource Id 
- The resource ID of the remote volume.
- endpointType String | EndpointType 
- Indicates whether the local volume is the source or destination for the Volume Replication
- remoteVolume StringRegion 
- The remote region for the other end of the Volume Replication.
- replicationId String
- Id
- replicationSchedule String | ReplicationSchedule 
- Schedule
- remoteVolume stringResource Id 
- The resource ID of the remote volume.
- endpointType string | EndpointType 
- Indicates whether the local volume is the source or destination for the Volume Replication
- remoteVolume stringRegion 
- The remote region for the other end of the Volume Replication.
- replicationId string
- Id
- replicationSchedule string | ReplicationSchedule 
- Schedule
- remote_volume_ strresource_ id 
- 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_ strregion 
- The remote region for the other end of the Volume Replication.
- replication_id str
- Id
- replication_schedule str | ReplicationSchedule 
- Schedule
- remoteVolume StringResource Id 
- 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
- remoteVolume StringRegion 
- The remote region for the other end of the Volume Replication.
- replicationId String
- Id
- replicationSchedule String | "_10minutely" | "hourly" | "daily"
- Schedule
ReplicationObjectResponse, ReplicationObjectResponseArgs      
- RemoteVolume stringResource Id 
- The resource ID of the remote volume.
- EndpointType string
- Indicates whether the local volume is the source or destination for the Volume Replication
- RemoteVolume stringRegion 
- The remote region for the other end of the Volume Replication.
- ReplicationId string
- Id
- ReplicationSchedule string
- Schedule
- RemoteVolume stringResource Id 
- The resource ID of the remote volume.
- EndpointType string
- Indicates whether the local volume is the source or destination for the Volume Replication
- RemoteVolume stringRegion 
- The remote region for the other end of the Volume Replication.
- ReplicationId string
- Id
- ReplicationSchedule string
- Schedule
- remoteVolume StringResource Id 
- The resource ID of the remote volume.
- endpointType String
- Indicates whether the local volume is the source or destination for the Volume Replication
- remoteVolume StringRegion 
- The remote region for the other end of the Volume Replication.
- replicationId String
- Id
- replicationSchedule String
- Schedule
- remoteVolume stringResource Id 
- The resource ID of the remote volume.
- endpointType string
- Indicates whether the local volume is the source or destination for the Volume Replication
- remoteVolume stringRegion 
- The remote region for the other end of the Volume Replication.
- replicationId string
- Id
- replicationSchedule string
- Schedule
- remote_volume_ strresource_ id 
- 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_ strregion 
- The remote region for the other end of the Volume Replication.
- replication_id str
- Id
- replication_schedule str
- Schedule
- remoteVolume StringResource Id 
- The resource ID of the remote volume.
- endpointType String
- Indicates whether the local volume is the source or destination for the Volume Replication
- remoteVolume StringRegion 
- 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
- ReplicationSchedule Hourly 
- hourly
- ReplicationSchedule Daily 
- 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
- SecurityStyle Ntfs 
- ntfs
- SecurityStyle Unix 
- 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
- ServiceLevel Standard 
- StandardStandard service level
- ServiceLevel Premium 
- PremiumPremium service level
- ServiceLevel Ultra 
- UltraUltra service level
- ServiceLevel 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
- 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
- SmbAccess Based Enumeration Disabled 
- DisabledsmbAccessBasedEnumeration share setting is disabled
- SmbAccess Based Enumeration 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
- "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
- SmbNon Browsable Disabled 
- DisabledsmbNonBrowsable share setting is disabled
- SmbNon Browsable 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
- "Disabled"
- DisabledsmbNonBrowsable share setting is disabled
- "Enabled"
- EnabledsmbNonBrowsable share setting is enabled
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
VolumeBackupProperties, VolumeBackupPropertiesArgs      
- BackupEnabled bool
- Backup Enabled
- BackupPolicy stringId 
- Backup Policy Resource ID
- PolicyEnforced bool
- Policy Enforced
- BackupEnabled bool
- Backup Enabled
- BackupPolicy stringId 
- Backup Policy Resource ID
- PolicyEnforced bool
- Policy Enforced
- backupEnabled Boolean
- Backup Enabled
- backupPolicy StringId 
- Backup Policy Resource ID
- policyEnforced Boolean
- Policy Enforced
- backupEnabled boolean
- Backup Enabled
- backupPolicy stringId 
- Backup Policy Resource ID
- policyEnforced boolean
- Policy Enforced
- backup_enabled bool
- Backup Enabled
- backup_policy_ strid 
- Backup Policy Resource ID
- policy_enforced bool
- Policy Enforced
- backupEnabled Boolean
- Backup Enabled
- backupPolicy StringId 
- Backup Policy Resource ID
- policyEnforced Boolean
- Policy Enforced
VolumeBackupPropertiesResponse, VolumeBackupPropertiesResponseArgs        
- BackupEnabled bool
- Backup Enabled
- BackupPolicy stringId 
- Backup Policy Resource ID
- PolicyEnforced bool
- Policy Enforced
- BackupEnabled bool
- Backup Enabled
- BackupPolicy stringId 
- Backup Policy Resource ID
- PolicyEnforced bool
- Policy Enforced
- backupEnabled Boolean
- Backup Enabled
- backupPolicy StringId 
- Backup Policy Resource ID
- policyEnforced Boolean
- Policy Enforced
- backupEnabled boolean
- Backup Enabled
- backupPolicy stringId 
- Backup Policy Resource ID
- policyEnforced boolean
- Policy Enforced
- backup_enabled bool
- Backup Enabled
- backup_policy_ strid 
- Backup Policy Resource ID
- policy_enforced bool
- Policy Enforced
- backupEnabled Boolean
- Backup Enabled
- backupPolicy StringId 
- Backup Policy Resource ID
- policyEnforced Boolean
- Policy Enforced
VolumePropertiesDataProtection, VolumePropertiesDataProtectionArgs        
- Backup
Pulumi.Azure Native. Net App. Inputs. Volume Backup Properties 
- Backup Properties
- Replication
Pulumi.Azure Native. Net App. Inputs. Replication Object 
- Replication properties
- Snapshot
Pulumi.Azure Native. Net App. Inputs. Volume Snapshot Properties 
- Snapshot properties.
- VolumeRelocation Pulumi.Azure Native. Net App. Inputs. Volume Relocation Properties 
- VolumeRelocation properties
- Backup
VolumeBackup Properties 
- Backup Properties
- Replication
ReplicationObject 
- Replication properties
- Snapshot
VolumeSnapshot Properties 
- Snapshot properties.
- VolumeRelocation VolumeRelocation Properties 
- VolumeRelocation properties
- backup
VolumeBackup Properties 
- Backup Properties
- replication
ReplicationObject 
- Replication properties
- snapshot
VolumeSnapshot Properties 
- Snapshot properties.
- volumeRelocation VolumeRelocation Properties 
- VolumeRelocation properties
- backup
VolumeBackup Properties 
- Backup Properties
- replication
ReplicationObject 
- Replication properties
- snapshot
VolumeSnapshot Properties 
- Snapshot properties.
- volumeRelocation VolumeRelocation Properties 
- VolumeRelocation properties
- backup
VolumeBackup Properties 
- Backup Properties
- replication
ReplicationObject 
- Replication properties
- snapshot
VolumeSnapshot Properties 
- Snapshot properties.
- volume_relocation VolumeRelocation Properties 
- 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
List<Pulumi.Azure Native. Net App. Inputs. Export Policy Rule> 
- Export policy rule
- Rules
[]ExportPolicy Rule 
- Export policy rule
- rules
List<ExportPolicy Rule> 
- Export policy rule
- rules
ExportPolicy Rule[] 
- Export policy rule
- rules
Sequence[ExportPolicy Rule] 
- Export policy rule
- rules List<Property Map>
- Export policy rule
VolumePropertiesResponseDataProtection, VolumePropertiesResponseDataProtectionArgs          
- Backup
Pulumi.Azure Native. Net App. Inputs. Volume Backup Properties Response 
- Backup Properties
- Replication
Pulumi.Azure Native. Net App. Inputs. Replication Object Response 
- Replication properties
- Snapshot
Pulumi.Azure Native. Net App. Inputs. Volume Snapshot Properties Response 
- Snapshot properties.
- VolumeRelocation Pulumi.Azure Native. Net App. Inputs. Volume Relocation Properties Response 
- VolumeRelocation properties
- Backup
VolumeBackup Properties Response 
- Backup Properties
- Replication
ReplicationObject Response 
- Replication properties
- Snapshot
VolumeSnapshot Properties Response 
- Snapshot properties.
- VolumeRelocation VolumeRelocation Properties Response 
- VolumeRelocation properties
- backup
VolumeBackup Properties Response 
- Backup Properties
- replication
ReplicationObject Response 
- Replication properties
- snapshot
VolumeSnapshot Properties Response 
- Snapshot properties.
- volumeRelocation VolumeRelocation Properties Response 
- VolumeRelocation properties
- backup
VolumeBackup Properties Response 
- Backup Properties
- replication
ReplicationObject Response 
- Replication properties
- snapshot
VolumeSnapshot Properties Response 
- Snapshot properties.
- volumeRelocation VolumeRelocation Properties Response 
- VolumeRelocation properties
- backup
VolumeBackup Properties Response 
- Backup Properties
- replication
ReplicationObject Response 
- Replication properties
- snapshot
VolumeSnapshot Properties Response 
- Snapshot properties.
- volume_relocation VolumeRelocation Properties Response 
- VolumeRelocation properties
- backup Property Map
- Backup Properties
- replication Property Map
- Replication properties
- snapshot Property Map
- Snapshot properties.
- volumeRelocation Property Map
- VolumeRelocation properties
VolumePropertiesResponseExportPolicy, VolumePropertiesResponseExportPolicyArgs          
- Rules
List<Pulumi.Azure Native. Net App. Inputs. Export Policy Rule Response> 
- Export policy rule
- Rules
[]ExportPolicy Rule Response 
- Export policy rule
- rules
List<ExportPolicy Rule Response> 
- Export policy rule
- rules
ExportPolicy Rule Response[] 
- Export policy rule
- rules
Sequence[ExportPolicy Rule Response] 
- Export policy rule
- 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        
- ReadyTo boolBe Finalized 
- Has relocation finished and is ready to be cleaned up
- RelocationRequested bool
- Has relocation been requested for this volume
- ReadyTo boolBe Finalized 
- Has relocation finished and is ready to be cleaned up
- RelocationRequested bool
- Has relocation been requested for this volume
- readyTo BooleanBe Finalized 
- Has relocation finished and is ready to be cleaned up
- relocationRequested Boolean
- Has relocation been requested for this volume
- readyTo booleanBe Finalized 
- Has relocation finished and is ready to be cleaned up
- relocationRequested boolean
- Has relocation been requested for this volume
- ready_to_ boolbe_ finalized 
- Has relocation finished and is ready to be cleaned up
- relocation_requested bool
- Has relocation been requested for this volume
- readyTo BooleanBe Finalized 
- Has relocation finished and is ready to be cleaned up
- relocationRequested Boolean
- Has relocation been requested for this volume
VolumeSnapshotProperties, VolumeSnapshotPropertiesArgs      
- SnapshotPolicy stringId 
- Snapshot Policy ResourceId
- SnapshotPolicy stringId 
- Snapshot Policy ResourceId
- snapshotPolicy StringId 
- Snapshot Policy ResourceId
- snapshotPolicy stringId 
- Snapshot Policy ResourceId
- snapshot_policy_ strid 
- Snapshot Policy ResourceId
- snapshotPolicy StringId 
- Snapshot Policy ResourceId
VolumeSnapshotPropertiesResponse, VolumeSnapshotPropertiesResponseArgs        
- SnapshotPolicy stringId 
- Snapshot Policy ResourceId
- SnapshotPolicy stringId 
- Snapshot Policy ResourceId
- snapshotPolicy StringId 
- Snapshot Policy ResourceId
- snapshotPolicy stringId 
- Snapshot Policy ResourceId
- snapshot_policy_ strid 
- Snapshot Policy ResourceId
- snapshotPolicy StringId 
- Snapshot Policy ResourceId
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:netapp:Volume account1/pool1/volume1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0