1. Packages
  2. Azure Native
  3. API Docs
  4. fileshares
  5. FileShare
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.7.1 published on Wednesday, Aug 13, 2025 by Pulumi

azure-native.fileshares.FileShare

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.7.1 published on Wednesday, Aug 13, 2025 by Pulumi

    File share resource

    Uses Azure REST API version 2025-06-01-preview.

    Example Usage

    FileShares_CreateOrUpdate_MaximumSet

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var fileShare = new AzureNative.FileShares.FileShare("fileShare", new()
        {
            Location = "gdsuixfhrgfbbbfjtgocmlzyuonrr",
            Properties = new AzureNative.FileShares.Inputs.FileSharePropertiesArgs
            {
                MediaTier = AzureNative.FileShares.MediaTier.SSD,
                MountName = "fileshare",
                NfsProtocolProperties = new AzureNative.FileShares.Inputs.NfsProtocolPropertiesArgs
                {
                    RootSquash = AzureNative.FileShares.ShareRootSquash.NoRootSquash,
                },
                Protocol = AzureNative.FileShares.Protocol.NFS,
                ProvisionedIOPerSec = 5,
                ProvisionedStorageGiB = 8,
                ProvisionedThroughputMiBPerSec = 22,
                PublicAccessProperties = new AzureNative.FileShares.Inputs.PublicAccessPropertiesArgs
                {
                    AllowedSubnets = new[]
                    {
                        "/subscriptions/9760acf5-4638-11e7-9bdb-020073ca7778/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3",
                    },
                },
                PublicNetworkAccess = AzureNative.FileShares.PublicNetworkAccess.Enabled,
                Redundancy = AzureNative.FileShares.Redundancy.Local,
            },
            ResourceGroupName = "rgfileshares",
            ResourceName = "fileshare",
            Tags = 
            {
                { "key9647", "xwokdvyoae" },
            },
        });
    
    });
    
    package main
    
    import (
    	fileshares "github.com/pulumi/pulumi-azure-native-sdk/fileshares/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fileshares.NewFileShare(ctx, "fileShare", &fileshares.FileShareArgs{
    			Location: pulumi.String("gdsuixfhrgfbbbfjtgocmlzyuonrr"),
    			Properties: &fileshares.FileSharePropertiesArgs{
    				MediaTier: pulumi.String(fileshares.MediaTierSSD),
    				MountName: pulumi.String("fileshare"),
    				NfsProtocolProperties: &fileshares.NfsProtocolPropertiesArgs{
    					RootSquash: pulumi.String(fileshares.ShareRootSquashNoRootSquash),
    				},
    				Protocol:                       pulumi.String(fileshares.ProtocolNFS),
    				ProvisionedIOPerSec:            pulumi.Int(5),
    				ProvisionedStorageGiB:          pulumi.Int(8),
    				ProvisionedThroughputMiBPerSec: pulumi.Int(22),
    				PublicAccessProperties: &fileshares.PublicAccessPropertiesArgs{
    					AllowedSubnets: pulumi.StringArray{
    						pulumi.String("/subscriptions/9760acf5-4638-11e7-9bdb-020073ca7778/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3"),
    					},
    				},
    				PublicNetworkAccess: pulumi.String(fileshares.PublicNetworkAccessEnabled),
    				Redundancy:          pulumi.String(fileshares.RedundancyLocal),
    			},
    			ResourceGroupName: pulumi.String("rgfileshares"),
    			ResourceName:      pulumi.String("fileshare"),
    			Tags: pulumi.StringMap{
    				"key9647": pulumi.String("xwokdvyoae"),
    			},
    		})
    		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.fileshares.FileShare;
    import com.pulumi.azurenative.fileshares.FileShareArgs;
    import com.pulumi.azurenative.fileshares.inputs.FileSharePropertiesArgs;
    import com.pulumi.azurenative.fileshares.inputs.NfsProtocolPropertiesArgs;
    import com.pulumi.azurenative.fileshares.inputs.PublicAccessPropertiesArgs;
    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 fileShare = new FileShare("fileShare", FileShareArgs.builder()
                .location("gdsuixfhrgfbbbfjtgocmlzyuonrr")
                .properties(FileSharePropertiesArgs.builder()
                    .mediaTier("SSD")
                    .mountName("fileshare")
                    .nfsProtocolProperties(NfsProtocolPropertiesArgs.builder()
                        .rootSquash("NoRootSquash")
                        .build())
                    .protocol("NFS")
                    .provisionedIOPerSec(5)
                    .provisionedStorageGiB(8)
                    .provisionedThroughputMiBPerSec(22)
                    .publicAccessProperties(PublicAccessPropertiesArgs.builder()
                        .allowedSubnets("/subscriptions/9760acf5-4638-11e7-9bdb-020073ca7778/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3")
                        .build())
                    .publicNetworkAccess("Enabled")
                    .redundancy("Local")
                    .build())
                .resourceGroupName("rgfileshares")
                .resourceName("fileshare")
                .tags(Map.of("key9647", "xwokdvyoae"))
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const fileShare = new azure_native.fileshares.FileShare("fileShare", {
        location: "gdsuixfhrgfbbbfjtgocmlzyuonrr",
        properties: {
            mediaTier: azure_native.fileshares.MediaTier.SSD,
            mountName: "fileshare",
            nfsProtocolProperties: {
                rootSquash: azure_native.fileshares.ShareRootSquash.NoRootSquash,
            },
            protocol: azure_native.fileshares.Protocol.NFS,
            provisionedIOPerSec: 5,
            provisionedStorageGiB: 8,
            provisionedThroughputMiBPerSec: 22,
            publicAccessProperties: {
                allowedSubnets: ["/subscriptions/9760acf5-4638-11e7-9bdb-020073ca7778/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3"],
            },
            publicNetworkAccess: azure_native.fileshares.PublicNetworkAccess.Enabled,
            redundancy: azure_native.fileshares.Redundancy.Local,
        },
        resourceGroupName: "rgfileshares",
        resourceName: "fileshare",
        tags: {
            key9647: "xwokdvyoae",
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    file_share = azure_native.fileshares.FileShare("fileShare",
        location="gdsuixfhrgfbbbfjtgocmlzyuonrr",
        properties={
            "media_tier": azure_native.fileshares.MediaTier.SSD,
            "mount_name": "fileshare",
            "nfs_protocol_properties": {
                "root_squash": azure_native.fileshares.ShareRootSquash.NO_ROOT_SQUASH,
            },
            "protocol": azure_native.fileshares.Protocol.NFS,
            "provisioned_io_per_sec": 5,
            "provisioned_storage_gi_b": 8,
            "provisioned_throughput_mi_b_per_sec": 22,
            "public_access_properties": {
                "allowed_subnets": ["/subscriptions/9760acf5-4638-11e7-9bdb-020073ca7778/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3"],
            },
            "public_network_access": azure_native.fileshares.PublicNetworkAccess.ENABLED,
            "redundancy": azure_native.fileshares.Redundancy.LOCAL,
        },
        resource_group_name="rgfileshares",
        resource_name_="fileshare",
        tags={
            "key9647": "xwokdvyoae",
        })
    
    resources:
      fileShare:
        type: azure-native:fileshares:FileShare
        properties:
          location: gdsuixfhrgfbbbfjtgocmlzyuonrr
          properties:
            mediaTier: SSD
            mountName: fileshare
            nfsProtocolProperties:
              rootSquash: NoRootSquash
            protocol: NFS
            provisionedIOPerSec: 5
            provisionedStorageGiB: 8
            provisionedThroughputMiBPerSec: 22
            publicAccessProperties:
              allowedSubnets:
                - /subscriptions/9760acf5-4638-11e7-9bdb-020073ca7778/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3
            publicNetworkAccess: Enabled
            redundancy: Local
          resourceGroupName: rgfileshares
          resourceName: fileshare
          tags:
            key9647: xwokdvyoae
    

    Create FileShare Resource

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

    Constructor syntax

    new FileShare(name: string, args: FileShareArgs, opts?: CustomResourceOptions);
    @overload
    def FileShare(resource_name: str,
                  args: FileShareArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def FileShare(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  resource_group_name: Optional[str] = None,
                  location: Optional[str] = None,
                  properties: Optional[FileSharePropertiesArgs] = None,
                  resource_name_: Optional[str] = None,
                  tags: Optional[Mapping[str, str]] = None)
    func NewFileShare(ctx *Context, name string, args FileShareArgs, opts ...ResourceOption) (*FileShare, error)
    public FileShare(string name, FileShareArgs args, CustomResourceOptions? opts = null)
    public FileShare(String name, FileShareArgs args)
    public FileShare(String name, FileShareArgs args, CustomResourceOptions options)
    
    type: azure-native:fileshares:FileShare
    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 FileShareArgs
    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 FileShareArgs
    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 FileShareArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FileShareArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FileShareArgs
    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 fileShareResource = new AzureNative.FileShares.FileShare("fileShareResource", new()
    {
        ResourceGroupName = "string",
        Location = "string",
        Properties = new AzureNative.FileShares.Inputs.FileSharePropertiesArgs
        {
            MediaTier = "string",
            MountName = "string",
            NfsProtocolProperties = new AzureNative.FileShares.Inputs.NfsProtocolPropertiesArgs
            {
                RootSquash = "string",
            },
            Protocol = "string",
            ProvisionedIOPerSec = 0,
            ProvisionedStorageGiB = 0,
            ProvisionedThroughputMiBPerSec = 0,
            PublicAccessProperties = new AzureNative.FileShares.Inputs.PublicAccessPropertiesArgs
            {
                AllowedSubnets = new[]
                {
                    "string",
                },
            },
            PublicNetworkAccess = "string",
            Redundancy = "string",
        },
        ResourceName = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := fileshares.NewFileShare(ctx, "fileShareResource", &fileshares.FileShareArgs{
    	ResourceGroupName: pulumi.String("string"),
    	Location:          pulumi.String("string"),
    	Properties: &fileshares.FileSharePropertiesArgs{
    		MediaTier: pulumi.String("string"),
    		MountName: pulumi.String("string"),
    		NfsProtocolProperties: &fileshares.NfsProtocolPropertiesArgs{
    			RootSquash: pulumi.String("string"),
    		},
    		Protocol:                       pulumi.String("string"),
    		ProvisionedIOPerSec:            pulumi.Int(0),
    		ProvisionedStorageGiB:          pulumi.Int(0),
    		ProvisionedThroughputMiBPerSec: pulumi.Int(0),
    		PublicAccessProperties: &fileshares.PublicAccessPropertiesArgs{
    			AllowedSubnets: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    		PublicNetworkAccess: pulumi.String("string"),
    		Redundancy:          pulumi.String("string"),
    	},
    	ResourceName: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var fileShareResource = new com.pulumi.azurenative.fileshares.FileShare("fileShareResource", com.pulumi.azurenative.fileshares.FileShareArgs.builder()
        .resourceGroupName("string")
        .location("string")
        .properties(FileSharePropertiesArgs.builder()
            .mediaTier("string")
            .mountName("string")
            .nfsProtocolProperties(NfsProtocolPropertiesArgs.builder()
                .rootSquash("string")
                .build())
            .protocol("string")
            .provisionedIOPerSec(0)
            .provisionedStorageGiB(0)
            .provisionedThroughputMiBPerSec(0)
            .publicAccessProperties(PublicAccessPropertiesArgs.builder()
                .allowedSubnets("string")
                .build())
            .publicNetworkAccess("string")
            .redundancy("string")
            .build())
        .resourceName("string")
        .tags(Map.of("string", "string"))
        .build());
    
    file_share_resource = azure_native.fileshares.FileShare("fileShareResource",
        resource_group_name="string",
        location="string",
        properties={
            "media_tier": "string",
            "mount_name": "string",
            "nfs_protocol_properties": {
                "root_squash": "string",
            },
            "protocol": "string",
            "provisioned_io_per_sec": 0,
            "provisioned_storage_gi_b": 0,
            "provisioned_throughput_mi_b_per_sec": 0,
            "public_access_properties": {
                "allowed_subnets": ["string"],
            },
            "public_network_access": "string",
            "redundancy": "string",
        },
        resource_name_="string",
        tags={
            "string": "string",
        })
    
    const fileShareResource = new azure_native.fileshares.FileShare("fileShareResource", {
        resourceGroupName: "string",
        location: "string",
        properties: {
            mediaTier: "string",
            mountName: "string",
            nfsProtocolProperties: {
                rootSquash: "string",
            },
            protocol: "string",
            provisionedIOPerSec: 0,
            provisionedStorageGiB: 0,
            provisionedThroughputMiBPerSec: 0,
            publicAccessProperties: {
                allowedSubnets: ["string"],
            },
            publicNetworkAccess: "string",
            redundancy: "string",
        },
        resourceName: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:fileshares:FileShare
    properties:
        location: string
        properties:
            mediaTier: string
            mountName: string
            nfsProtocolProperties:
                rootSquash: string
            protocol: string
            provisionedIOPerSec: 0
            provisionedStorageGiB: 0
            provisionedThroughputMiBPerSec: 0
            publicAccessProperties:
                allowedSubnets:
                    - string
            publicNetworkAccess: string
            redundancy: string
        resourceGroupName: string
        resourceName: string
        tags:
            string: string
    

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

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Location string
    The geo-location where the resource lives
    Properties Pulumi.AzureNative.FileShares.Inputs.FileShareProperties
    The resource-specific properties for this resource.
    ResourceName string
    The resource name of the file share, as seen by the administrator through Azure Resource Manager.
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Location string
    The geo-location where the resource lives
    Properties FileSharePropertiesArgs
    The resource-specific properties for this resource.
    ResourceName string
    The resource name of the file share, as seen by the administrator through Azure Resource Manager.
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    location String
    The geo-location where the resource lives
    properties FileShareProperties
    The resource-specific properties for this resource.
    resourceName String
    The resource name of the file share, as seen by the administrator through Azure Resource Manager.
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    location string
    The geo-location where the resource lives
    properties FileShareProperties
    The resource-specific properties for this resource.
    resourceName string
    The resource name of the file share, as seen by the administrator through Azure Resource Manager.
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    location str
    The geo-location where the resource lives
    properties FileSharePropertiesArgs
    The resource-specific properties for this resource.
    resource_name str
    The resource name of the file share, as seen by the administrator through Azure Resource Manager.
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    location String
    The geo-location where the resource lives
    properties Property Map
    The resource-specific properties for this resource.
    resourceName String
    The resource name of the file share, as seen by the administrator through Azure Resource Manager.
    tags Map<String>
    Resource tags.

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.FileShares.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    FileShareProperties, FileSharePropertiesArgs

    MediaTier string | Pulumi.AzureNative.FileShares.MediaTier
    The storage media tier of the file share.
    MountName string
    The name of the file share as seen by the end user when mounting the share, such as in a URI or UNC format in their operating system.
    NfsProtocolProperties Pulumi.AzureNative.FileShares.Inputs.NfsProtocolProperties
    Protocol settings specific NFS.
    Protocol string | Pulumi.AzureNative.FileShares.Protocol
    The file sharing protocol for this file share.
    ProvisionedIOPerSec int
    The provisioned IO / sec of the share.
    ProvisionedStorageGiB int
    The provisioned storage size of the share in GiB (1 GiB is 1024^3 bytes or 1073741824 bytes). A component of the file share's bill is the provisioned storage, regardless of the amount of used storage.
    ProvisionedThroughputMiBPerSec int
    The provisioned throughput / sec of the share.
    PublicAccessProperties Pulumi.AzureNative.FileShares.Inputs.PublicAccessProperties
    The set of properties for control public access.
    PublicNetworkAccess string | Pulumi.AzureNative.FileShares.PublicNetworkAccess
    Gets or sets allow or disallow public network access to azure managed file share
    Redundancy string | Pulumi.AzureNative.FileShares.Redundancy
    The chosen redundancy level of the file share.
    MediaTier string | MediaTier
    The storage media tier of the file share.
    MountName string
    The name of the file share as seen by the end user when mounting the share, such as in a URI or UNC format in their operating system.
    NfsProtocolProperties NfsProtocolProperties
    Protocol settings specific NFS.
    Protocol string | Protocol
    The file sharing protocol for this file share.
    ProvisionedIOPerSec int
    The provisioned IO / sec of the share.
    ProvisionedStorageGiB int
    The provisioned storage size of the share in GiB (1 GiB is 1024^3 bytes or 1073741824 bytes). A component of the file share's bill is the provisioned storage, regardless of the amount of used storage.
    ProvisionedThroughputMiBPerSec int
    The provisioned throughput / sec of the share.
    PublicAccessProperties PublicAccessProperties
    The set of properties for control public access.
    PublicNetworkAccess string | PublicNetworkAccess
    Gets or sets allow or disallow public network access to azure managed file share
    Redundancy string | Redundancy
    The chosen redundancy level of the file share.
    mediaTier String | MediaTier
    The storage media tier of the file share.
    mountName String
    The name of the file share as seen by the end user when mounting the share, such as in a URI or UNC format in their operating system.
    nfsProtocolProperties NfsProtocolProperties
    Protocol settings specific NFS.
    protocol String | Protocol
    The file sharing protocol for this file share.
    provisionedIOPerSec Integer
    The provisioned IO / sec of the share.
    provisionedStorageGiB Integer
    The provisioned storage size of the share in GiB (1 GiB is 1024^3 bytes or 1073741824 bytes). A component of the file share's bill is the provisioned storage, regardless of the amount of used storage.
    provisionedThroughputMiBPerSec Integer
    The provisioned throughput / sec of the share.
    publicAccessProperties PublicAccessProperties
    The set of properties for control public access.
    publicNetworkAccess String | PublicNetworkAccess
    Gets or sets allow or disallow public network access to azure managed file share
    redundancy String | Redundancy
    The chosen redundancy level of the file share.
    mediaTier string | MediaTier
    The storage media tier of the file share.
    mountName string
    The name of the file share as seen by the end user when mounting the share, such as in a URI or UNC format in their operating system.
    nfsProtocolProperties NfsProtocolProperties
    Protocol settings specific NFS.
    protocol string | Protocol
    The file sharing protocol for this file share.
    provisionedIOPerSec number
    The provisioned IO / sec of the share.
    provisionedStorageGiB number
    The provisioned storage size of the share in GiB (1 GiB is 1024^3 bytes or 1073741824 bytes). A component of the file share's bill is the provisioned storage, regardless of the amount of used storage.
    provisionedThroughputMiBPerSec number
    The provisioned throughput / sec of the share.
    publicAccessProperties PublicAccessProperties
    The set of properties for control public access.
    publicNetworkAccess string | PublicNetworkAccess
    Gets or sets allow or disallow public network access to azure managed file share
    redundancy string | Redundancy
    The chosen redundancy level of the file share.
    media_tier str | MediaTier
    The storage media tier of the file share.
    mount_name str
    The name of the file share as seen by the end user when mounting the share, such as in a URI or UNC format in their operating system.
    nfs_protocol_properties NfsProtocolProperties
    Protocol settings specific NFS.
    protocol str | Protocol
    The file sharing protocol for this file share.
    provisioned_io_per_sec int
    The provisioned IO / sec of the share.
    provisioned_storage_gi_b int
    The provisioned storage size of the share in GiB (1 GiB is 1024^3 bytes or 1073741824 bytes). A component of the file share's bill is the provisioned storage, regardless of the amount of used storage.
    provisioned_throughput_mi_b_per_sec int
    The provisioned throughput / sec of the share.
    public_access_properties PublicAccessProperties
    The set of properties for control public access.
    public_network_access str | PublicNetworkAccess
    Gets or sets allow or disallow public network access to azure managed file share
    redundancy str | Redundancy
    The chosen redundancy level of the file share.
    mediaTier String | "SSD"
    The storage media tier of the file share.
    mountName String
    The name of the file share as seen by the end user when mounting the share, such as in a URI or UNC format in their operating system.
    nfsProtocolProperties Property Map
    Protocol settings specific NFS.
    protocol String | "NFS"
    The file sharing protocol for this file share.
    provisionedIOPerSec Number
    The provisioned IO / sec of the share.
    provisionedStorageGiB Number
    The provisioned storage size of the share in GiB (1 GiB is 1024^3 bytes or 1073741824 bytes). A component of the file share's bill is the provisioned storage, regardless of the amount of used storage.
    provisionedThroughputMiBPerSec Number
    The provisioned throughput / sec of the share.
    publicAccessProperties Property Map
    The set of properties for control public access.
    publicNetworkAccess String | "Enabled" | "Disabled"
    Gets or sets allow or disallow public network access to azure managed file share
    redundancy String | "Local" | "Zone"
    The chosen redundancy level of the file share.

    FileSharePropertiesResponse, FileSharePropertiesResponseArgs

    HostName string
    The host name of the file share.
    IncludedBurstIOPerSec int
    Burst IOPS are extra buffer IOPS enabling you to consume more than your provisioned IOPS for a short period of time, depending on the burst credits available for your share.
    MaxBurstIOPerSecCredits double
    Max burst IOPS credits shows the maximum number of burst credits the share can have at the current IOPS provisioning level.
    PrivateEndpointConnections List<Pulumi.AzureNative.FileShares.Inputs.PrivateEndpointConnectionResponse>
    The list of associated private endpoint connections.
    ProvisionedIOPerSecNextAllowedDowngrade string
    A date/time value that specifies when the provisioned IOPS for the file share is permitted to be reduced.
    ProvisionedStorageNextAllowedDowngrade string
    A date/time value that specifies when the provisioned storage for the file share is permitted to be reduced.
    ProvisionedThroughputNextAllowedDowngrade string
    A date/time value that specifies when the provisioned throughput for the file share is permitted to be reduced.
    ProvisioningState string
    The status of the last operation.
    MediaTier string
    The storage media tier of the file share.
    MountName string
    The name of the file share as seen by the end user when mounting the share, such as in a URI or UNC format in their operating system.
    NfsProtocolProperties Pulumi.AzureNative.FileShares.Inputs.NfsProtocolPropertiesResponse
    Protocol settings specific NFS.
    Protocol string
    The file sharing protocol for this file share.
    ProvisionedIOPerSec int
    The provisioned IO / sec of the share.
    ProvisionedStorageGiB int
    The provisioned storage size of the share in GiB (1 GiB is 1024^3 bytes or 1073741824 bytes). A component of the file share's bill is the provisioned storage, regardless of the amount of used storage.
    ProvisionedThroughputMiBPerSec int
    The provisioned throughput / sec of the share.
    PublicAccessProperties Pulumi.AzureNative.FileShares.Inputs.PublicAccessPropertiesResponse
    The set of properties for control public access.
    PublicNetworkAccess string
    Gets or sets allow or disallow public network access to azure managed file share
    Redundancy string
    The chosen redundancy level of the file share.
    HostName string
    The host name of the file share.
    IncludedBurstIOPerSec int
    Burst IOPS are extra buffer IOPS enabling you to consume more than your provisioned IOPS for a short period of time, depending on the burst credits available for your share.
    MaxBurstIOPerSecCredits float64
    Max burst IOPS credits shows the maximum number of burst credits the share can have at the current IOPS provisioning level.
    PrivateEndpointConnections []PrivateEndpointConnectionResponse
    The list of associated private endpoint connections.
    ProvisionedIOPerSecNextAllowedDowngrade string
    A date/time value that specifies when the provisioned IOPS for the file share is permitted to be reduced.
    ProvisionedStorageNextAllowedDowngrade string
    A date/time value that specifies when the provisioned storage for the file share is permitted to be reduced.
    ProvisionedThroughputNextAllowedDowngrade string
    A date/time value that specifies when the provisioned throughput for the file share is permitted to be reduced.
    ProvisioningState string
    The status of the last operation.
    MediaTier string
    The storage media tier of the file share.
    MountName string
    The name of the file share as seen by the end user when mounting the share, such as in a URI or UNC format in their operating system.
    NfsProtocolProperties NfsProtocolPropertiesResponse
    Protocol settings specific NFS.
    Protocol string
    The file sharing protocol for this file share.
    ProvisionedIOPerSec int
    The provisioned IO / sec of the share.
    ProvisionedStorageGiB int
    The provisioned storage size of the share in GiB (1 GiB is 1024^3 bytes or 1073741824 bytes). A component of the file share's bill is the provisioned storage, regardless of the amount of used storage.
    ProvisionedThroughputMiBPerSec int
    The provisioned throughput / sec of the share.
    PublicAccessProperties PublicAccessPropertiesResponse
    The set of properties for control public access.
    PublicNetworkAccess string
    Gets or sets allow or disallow public network access to azure managed file share
    Redundancy string
    The chosen redundancy level of the file share.
    hostName String
    The host name of the file share.
    includedBurstIOPerSec Integer
    Burst IOPS are extra buffer IOPS enabling you to consume more than your provisioned IOPS for a short period of time, depending on the burst credits available for your share.
    maxBurstIOPerSecCredits Double
    Max burst IOPS credits shows the maximum number of burst credits the share can have at the current IOPS provisioning level.
    privateEndpointConnections List<PrivateEndpointConnectionResponse>
    The list of associated private endpoint connections.
    provisionedIOPerSecNextAllowedDowngrade String
    A date/time value that specifies when the provisioned IOPS for the file share is permitted to be reduced.
    provisionedStorageNextAllowedDowngrade String
    A date/time value that specifies when the provisioned storage for the file share is permitted to be reduced.
    provisionedThroughputNextAllowedDowngrade String
    A date/time value that specifies when the provisioned throughput for the file share is permitted to be reduced.
    provisioningState String
    The status of the last operation.
    mediaTier String
    The storage media tier of the file share.
    mountName String
    The name of the file share as seen by the end user when mounting the share, such as in a URI or UNC format in their operating system.
    nfsProtocolProperties NfsProtocolPropertiesResponse
    Protocol settings specific NFS.
    protocol String
    The file sharing protocol for this file share.
    provisionedIOPerSec Integer
    The provisioned IO / sec of the share.
    provisionedStorageGiB Integer
    The provisioned storage size of the share in GiB (1 GiB is 1024^3 bytes or 1073741824 bytes). A component of the file share's bill is the provisioned storage, regardless of the amount of used storage.
    provisionedThroughputMiBPerSec Integer
    The provisioned throughput / sec of the share.
    publicAccessProperties PublicAccessPropertiesResponse
    The set of properties for control public access.
    publicNetworkAccess String
    Gets or sets allow or disallow public network access to azure managed file share
    redundancy String
    The chosen redundancy level of the file share.
    hostName string
    The host name of the file share.
    includedBurstIOPerSec number
    Burst IOPS are extra buffer IOPS enabling you to consume more than your provisioned IOPS for a short period of time, depending on the burst credits available for your share.
    maxBurstIOPerSecCredits number
    Max burst IOPS credits shows the maximum number of burst credits the share can have at the current IOPS provisioning level.
    privateEndpointConnections PrivateEndpointConnectionResponse[]
    The list of associated private endpoint connections.
    provisionedIOPerSecNextAllowedDowngrade string
    A date/time value that specifies when the provisioned IOPS for the file share is permitted to be reduced.
    provisionedStorageNextAllowedDowngrade string
    A date/time value that specifies when the provisioned storage for the file share is permitted to be reduced.
    provisionedThroughputNextAllowedDowngrade string
    A date/time value that specifies when the provisioned throughput for the file share is permitted to be reduced.
    provisioningState string
    The status of the last operation.
    mediaTier string
    The storage media tier of the file share.
    mountName string
    The name of the file share as seen by the end user when mounting the share, such as in a URI or UNC format in their operating system.
    nfsProtocolProperties NfsProtocolPropertiesResponse
    Protocol settings specific NFS.
    protocol string
    The file sharing protocol for this file share.
    provisionedIOPerSec number
    The provisioned IO / sec of the share.
    provisionedStorageGiB number
    The provisioned storage size of the share in GiB (1 GiB is 1024^3 bytes or 1073741824 bytes). A component of the file share's bill is the provisioned storage, regardless of the amount of used storage.
    provisionedThroughputMiBPerSec number
    The provisioned throughput / sec of the share.
    publicAccessProperties PublicAccessPropertiesResponse
    The set of properties for control public access.
    publicNetworkAccess string
    Gets or sets allow or disallow public network access to azure managed file share
    redundancy string
    The chosen redundancy level of the file share.
    host_name str
    The host name of the file share.
    included_burst_io_per_sec int
    Burst IOPS are extra buffer IOPS enabling you to consume more than your provisioned IOPS for a short period of time, depending on the burst credits available for your share.
    max_burst_io_per_sec_credits float
    Max burst IOPS credits shows the maximum number of burst credits the share can have at the current IOPS provisioning level.
    private_endpoint_connections Sequence[PrivateEndpointConnectionResponse]
    The list of associated private endpoint connections.
    provisioned_io_per_sec_next_allowed_downgrade str
    A date/time value that specifies when the provisioned IOPS for the file share is permitted to be reduced.
    provisioned_storage_next_allowed_downgrade str
    A date/time value that specifies when the provisioned storage for the file share is permitted to be reduced.
    provisioned_throughput_next_allowed_downgrade str
    A date/time value that specifies when the provisioned throughput for the file share is permitted to be reduced.
    provisioning_state str
    The status of the last operation.
    media_tier str
    The storage media tier of the file share.
    mount_name str
    The name of the file share as seen by the end user when mounting the share, such as in a URI or UNC format in their operating system.
    nfs_protocol_properties NfsProtocolPropertiesResponse
    Protocol settings specific NFS.
    protocol str
    The file sharing protocol for this file share.
    provisioned_io_per_sec int
    The provisioned IO / sec of the share.
    provisioned_storage_gi_b int
    The provisioned storage size of the share in GiB (1 GiB is 1024^3 bytes or 1073741824 bytes). A component of the file share's bill is the provisioned storage, regardless of the amount of used storage.
    provisioned_throughput_mi_b_per_sec int
    The provisioned throughput / sec of the share.
    public_access_properties PublicAccessPropertiesResponse
    The set of properties for control public access.
    public_network_access str
    Gets or sets allow or disallow public network access to azure managed file share
    redundancy str
    The chosen redundancy level of the file share.
    hostName String
    The host name of the file share.
    includedBurstIOPerSec Number
    Burst IOPS are extra buffer IOPS enabling you to consume more than your provisioned IOPS for a short period of time, depending on the burst credits available for your share.
    maxBurstIOPerSecCredits Number
    Max burst IOPS credits shows the maximum number of burst credits the share can have at the current IOPS provisioning level.
    privateEndpointConnections List<Property Map>
    The list of associated private endpoint connections.
    provisionedIOPerSecNextAllowedDowngrade String
    A date/time value that specifies when the provisioned IOPS for the file share is permitted to be reduced.
    provisionedStorageNextAllowedDowngrade String
    A date/time value that specifies when the provisioned storage for the file share is permitted to be reduced.
    provisionedThroughputNextAllowedDowngrade String
    A date/time value that specifies when the provisioned throughput for the file share is permitted to be reduced.
    provisioningState String
    The status of the last operation.
    mediaTier String
    The storage media tier of the file share.
    mountName String
    The name of the file share as seen by the end user when mounting the share, such as in a URI or UNC format in their operating system.
    nfsProtocolProperties Property Map
    Protocol settings specific NFS.
    protocol String
    The file sharing protocol for this file share.
    provisionedIOPerSec Number
    The provisioned IO / sec of the share.
    provisionedStorageGiB Number
    The provisioned storage size of the share in GiB (1 GiB is 1024^3 bytes or 1073741824 bytes). A component of the file share's bill is the provisioned storage, regardless of the amount of used storage.
    provisionedThroughputMiBPerSec Number
    The provisioned throughput / sec of the share.
    publicAccessProperties Property Map
    The set of properties for control public access.
    publicNetworkAccess String
    Gets or sets allow or disallow public network access to azure managed file share
    redundancy String
    The chosen redundancy level of the file share.

    MediaTier, MediaTierArgs

    SSD
    SSDSSD media tier.
    MediaTierSSD
    SSDSSD media tier.
    SSD
    SSDSSD media tier.
    SSD
    SSDSSD media tier.
    SSD
    SSDSSD media tier.
    "SSD"
    SSDSSD media tier.

    NfsProtocolProperties, NfsProtocolPropertiesArgs

    RootSquash string | Pulumi.AzureNative.FileShares.ShareRootSquash
    Root squash defines how root users on clients are mapped to the NFS share.
    RootSquash string | ShareRootSquash
    Root squash defines how root users on clients are mapped to the NFS share.
    rootSquash String | ShareRootSquash
    Root squash defines how root users on clients are mapped to the NFS share.
    rootSquash string | ShareRootSquash
    Root squash defines how root users on clients are mapped to the NFS share.
    root_squash str | ShareRootSquash
    Root squash defines how root users on clients are mapped to the NFS share.
    rootSquash String | "NoRootSquash" | "RootSquash" | "AllSquash"
    Root squash defines how root users on clients are mapped to the NFS share.

    NfsProtocolPropertiesResponse, NfsProtocolPropertiesResponseArgs

    RootSquash string
    Root squash defines how root users on clients are mapped to the NFS share.
    RootSquash string
    Root squash defines how root users on clients are mapped to the NFS share.
    rootSquash String
    Root squash defines how root users on clients are mapped to the NFS share.
    rootSquash string
    Root squash defines how root users on clients are mapped to the NFS share.
    root_squash str
    Root squash defines how root users on clients are mapped to the NFS share.
    rootSquash String
    Root squash defines how root users on clients are mapped to the NFS share.

    PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs

    GroupIds List<string>
    The group ids for the private endpoint resource.
    Id string
    Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
    Name string
    The name of the resource
    PrivateLinkServiceConnectionState Pulumi.AzureNative.FileShares.Inputs.PrivateLinkServiceConnectionStateResponse
    A collection of information about the state of the connection between service consumer and provider.
    ProvisioningState string
    The provisioning state of the private endpoint connection resource.
    SystemData Pulumi.AzureNative.FileShares.Inputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    PrivateEndpoint Pulumi.AzureNative.FileShares.Inputs.PrivateEndpointResponse
    The private endpoint resource.
    GroupIds []string
    The group ids for the private endpoint resource.
    Id string
    Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
    Name string
    The name of the resource
    PrivateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
    A collection of information about the state of the connection between service consumer and provider.
    ProvisioningState string
    The provisioning state of the private endpoint connection resource.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    PrivateEndpoint PrivateEndpointResponse
    The private endpoint resource.
    groupIds List<String>
    The group ids for the private endpoint resource.
    id String
    Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
    name String
    The name of the resource
    privateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
    A collection of information about the state of the connection between service consumer and provider.
    provisioningState String
    The provisioning state of the private endpoint connection resource.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    privateEndpoint PrivateEndpointResponse
    The private endpoint resource.
    groupIds string[]
    The group ids for the private endpoint resource.
    id string
    Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
    name string
    The name of the resource
    privateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
    A collection of information about the state of the connection between service consumer and provider.
    provisioningState string
    The provisioning state of the private endpoint connection resource.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    privateEndpoint PrivateEndpointResponse
    The private endpoint resource.
    group_ids Sequence[str]
    The group ids for the private endpoint resource.
    id str
    Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
    name str
    The name of the resource
    private_link_service_connection_state PrivateLinkServiceConnectionStateResponse
    A collection of information about the state of the connection between service consumer and provider.
    provisioning_state str
    The provisioning state of the private endpoint connection resource.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    private_endpoint PrivateEndpointResponse
    The private endpoint resource.
    groupIds List<String>
    The group ids for the private endpoint resource.
    id String
    Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
    name String
    The name of the resource
    privateLinkServiceConnectionState Property Map
    A collection of information about the state of the connection between service consumer and provider.
    provisioningState String
    The provisioning state of the private endpoint connection resource.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    privateEndpoint Property Map
    The private endpoint resource.

    PrivateEndpointResponse, PrivateEndpointResponseArgs

    Id string
    The ARM identifier for private endpoint.
    Id string
    The ARM identifier for private endpoint.
    id String
    The ARM identifier for private endpoint.
    id string
    The ARM identifier for private endpoint.
    id str
    The ARM identifier for private endpoint.
    id String
    The ARM identifier for private endpoint.

    PrivateLinkServiceConnectionStateResponse, PrivateLinkServiceConnectionStateResponseArgs

    ActionsRequired string
    A message indicating if changes on the service provider require any updates on the consumer.
    Description string
    The reason for approval/rejection of the connection.
    Status string
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    ActionsRequired string
    A message indicating if changes on the service provider require any updates on the consumer.
    Description string
    The reason for approval/rejection of the connection.
    Status string
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    actionsRequired String
    A message indicating if changes on the service provider require any updates on the consumer.
    description String
    The reason for approval/rejection of the connection.
    status String
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    actionsRequired string
    A message indicating if changes on the service provider require any updates on the consumer.
    description string
    The reason for approval/rejection of the connection.
    status string
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    actions_required str
    A message indicating if changes on the service provider require any updates on the consumer.
    description str
    The reason for approval/rejection of the connection.
    status str
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    actionsRequired String
    A message indicating if changes on the service provider require any updates on the consumer.
    description String
    The reason for approval/rejection of the connection.
    status String
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.

    Protocol, ProtocolArgs

    NFS
    NFSNFS protocol.
    ProtocolNFS
    NFSNFS protocol.
    NFS
    NFSNFS protocol.
    NFS
    NFSNFS protocol.
    NFS
    NFSNFS protocol.
    "NFS"
    NFSNFS protocol.

    PublicAccessProperties, PublicAccessPropertiesArgs

    AllowedSubnets List<string>
    The allowed set of subnets when access is restricted.
    AllowedSubnets []string
    The allowed set of subnets when access is restricted.
    allowedSubnets List<String>
    The allowed set of subnets when access is restricted.
    allowedSubnets string[]
    The allowed set of subnets when access is restricted.
    allowed_subnets Sequence[str]
    The allowed set of subnets when access is restricted.
    allowedSubnets List<String>
    The allowed set of subnets when access is restricted.

    PublicAccessPropertiesResponse, PublicAccessPropertiesResponseArgs

    AllowedSubnets List<string>
    The allowed set of subnets when access is restricted.
    AllowedSubnets []string
    The allowed set of subnets when access is restricted.
    allowedSubnets List<String>
    The allowed set of subnets when access is restricted.
    allowedSubnets string[]
    The allowed set of subnets when access is restricted.
    allowed_subnets Sequence[str]
    The allowed set of subnets when access is restricted.
    allowedSubnets List<String>
    The allowed set of subnets when access is restricted.

    PublicNetworkAccess, PublicNetworkAccessArgs

    Enabled
    EnabledThe public network access is enabled
    Disabled
    DisabledThe public network access is disabled
    PublicNetworkAccessEnabled
    EnabledThe public network access is enabled
    PublicNetworkAccessDisabled
    DisabledThe public network access is disabled
    Enabled
    EnabledThe public network access is enabled
    Disabled
    DisabledThe public network access is disabled
    Enabled
    EnabledThe public network access is enabled
    Disabled
    DisabledThe public network access is disabled
    ENABLED
    EnabledThe public network access is enabled
    DISABLED
    DisabledThe public network access is disabled
    "Enabled"
    EnabledThe public network access is enabled
    "Disabled"
    DisabledThe public network access is disabled

    Redundancy, RedundancyArgs

    Local
    LocalLocal redundancy.
    Zone
    ZoneZone redundancy.
    RedundancyLocal
    LocalLocal redundancy.
    RedundancyZone
    ZoneZone redundancy.
    Local
    LocalLocal redundancy.
    Zone
    ZoneZone redundancy.
    Local
    LocalLocal redundancy.
    Zone
    ZoneZone redundancy.
    LOCAL
    LocalLocal redundancy.
    ZONE
    ZoneZone redundancy.
    "Local"
    LocalLocal redundancy.
    "Zone"
    ZoneZone redundancy.

    ShareRootSquash, ShareRootSquashArgs

    NoRootSquash
    NoRootSquashNo root squash.
    RootSquash
    RootSquashRoot squash.
    AllSquash
    AllSquashAll squash.
    ShareRootSquashNoRootSquash
    NoRootSquashNo root squash.
    ShareRootSquashRootSquash
    RootSquashRoot squash.
    ShareRootSquashAllSquash
    AllSquashAll squash.
    NoRootSquash
    NoRootSquashNo root squash.
    RootSquash
    RootSquashRoot squash.
    AllSquash
    AllSquashAll squash.
    NoRootSquash
    NoRootSquashNo root squash.
    RootSquash
    RootSquashRoot squash.
    AllSquash
    AllSquashAll squash.
    NO_ROOT_SQUASH
    NoRootSquashNo root squash.
    ROOT_SQUASH
    RootSquashRoot squash.
    ALL_SQUASH
    AllSquashAll squash.
    "NoRootSquash"
    NoRootSquashNo root squash.
    "RootSquash"
    RootSquashRoot squash.
    "AllSquash"
    AllSquashAll squash.

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    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.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    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.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    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.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    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_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    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.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

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

    $ pulumi import azure-native:fileshares:FileShare fileshare /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.FileShares/fileShares/{resourceName} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Azure Native v3.7.1 published on Wednesday, Aug 13, 2025 by Pulumi