azure-native.storage.FileShare
Explore with Pulumi AI
Properties of the file share, including Id, resource name, resource type, Etag.
Uses Azure REST API version 2024-01-01. In version 2.x of the Azure Native provider, it used API version 2022-09-01.
Other available API versions: 2022-09-01, 2023-01-01, 2023-04-01, 2023-05-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native storage [ApiVersion]
. See the version guide for details.
Example Usage
Create NFS Shares
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var fileShare = new AzureNative.Storage.FileShare("fileShare", new()
{
AccountName = "sto666",
EnabledProtocols = AzureNative.Storage.EnabledProtocols.NFS,
ResourceGroupName = "res346",
ShareName = "share1235",
});
});
package main
import (
storage "github.com/pulumi/pulumi-azure-native-sdk/storage/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := storage.NewFileShare(ctx, "fileShare", &storage.FileShareArgs{
AccountName: pulumi.String("sto666"),
EnabledProtocols: pulumi.String(storage.EnabledProtocolsNFS),
ResourceGroupName: pulumi.String("res346"),
ShareName: pulumi.String("share1235"),
})
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.storage.FileShare;
import com.pulumi.azurenative.storage.FileShareArgs;
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()
.accountName("sto666")
.enabledProtocols("NFS")
.resourceGroupName("res346")
.shareName("share1235")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const fileShare = new azure_native.storage.FileShare("fileShare", {
accountName: "sto666",
enabledProtocols: azure_native.storage.EnabledProtocols.NFS,
resourceGroupName: "res346",
shareName: "share1235",
});
import pulumi
import pulumi_azure_native as azure_native
file_share = azure_native.storage.FileShare("fileShare",
account_name="sto666",
enabled_protocols=azure_native.storage.EnabledProtocols.NFS,
resource_group_name="res346",
share_name="share1235")
resources:
fileShare:
type: azure-native:storage:FileShare
properties:
accountName: sto666
enabledProtocols: NFS
resourceGroupName: res346
shareName: share1235
PutShares
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var fileShare = new AzureNative.Storage.FileShare("fileShare", new()
{
AccountName = "sto328",
ResourceGroupName = "res3376",
ShareName = "share6185",
});
});
package main
import (
storage "github.com/pulumi/pulumi-azure-native-sdk/storage/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := storage.NewFileShare(ctx, "fileShare", &storage.FileShareArgs{
AccountName: pulumi.String("sto328"),
ResourceGroupName: pulumi.String("res3376"),
ShareName: pulumi.String("share6185"),
})
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.storage.FileShare;
import com.pulumi.azurenative.storage.FileShareArgs;
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()
.accountName("sto328")
.resourceGroupName("res3376")
.shareName("share6185")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const fileShare = new azure_native.storage.FileShare("fileShare", {
accountName: "sto328",
resourceGroupName: "res3376",
shareName: "share6185",
});
import pulumi
import pulumi_azure_native as azure_native
file_share = azure_native.storage.FileShare("fileShare",
account_name="sto328",
resource_group_name="res3376",
share_name="share6185")
resources:
fileShare:
type: azure-native:storage:FileShare
properties:
accountName: sto328
resourceGroupName: res3376
shareName: share6185
PutShares with Access Tier
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var fileShare = new AzureNative.Storage.FileShare("fileShare", new()
{
AccessTier = AzureNative.Storage.ShareAccessTier.Hot,
AccountName = "sto666",
ResourceGroupName = "res346",
ShareName = "share1235",
});
});
package main
import (
storage "github.com/pulumi/pulumi-azure-native-sdk/storage/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := storage.NewFileShare(ctx, "fileShare", &storage.FileShareArgs{
AccessTier: pulumi.String(storage.ShareAccessTierHot),
AccountName: pulumi.String("sto666"),
ResourceGroupName: pulumi.String("res346"),
ShareName: pulumi.String("share1235"),
})
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.storage.FileShare;
import com.pulumi.azurenative.storage.FileShareArgs;
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()
.accessTier("Hot")
.accountName("sto666")
.resourceGroupName("res346")
.shareName("share1235")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const fileShare = new azure_native.storage.FileShare("fileShare", {
accessTier: azure_native.storage.ShareAccessTier.Hot,
accountName: "sto666",
resourceGroupName: "res346",
shareName: "share1235",
});
import pulumi
import pulumi_azure_native as azure_native
file_share = azure_native.storage.FileShare("fileShare",
access_tier=azure_native.storage.ShareAccessTier.HOT,
account_name="sto666",
resource_group_name="res346",
share_name="share1235")
resources:
fileShare:
type: azure-native:storage:FileShare
properties:
accessTier: Hot
accountName: sto666
resourceGroupName: res346
shareName: share1235
PutShares with Paid Bursting
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var fileShare = new AzureNative.Storage.FileShare("fileShare", new()
{
AccountName = "sto666",
FileSharePaidBursting = new AzureNative.Storage.Inputs.FileSharePropertiesFileSharePaidBurstingArgs
{
PaidBurstingEnabled = true,
PaidBurstingMaxBandwidthMibps = 10340,
PaidBurstingMaxIops = 102400,
},
ResourceGroupName = "res346",
ShareName = "share1235",
});
});
package main
import (
storage "github.com/pulumi/pulumi-azure-native-sdk/storage/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := storage.NewFileShare(ctx, "fileShare", &storage.FileShareArgs{
AccountName: pulumi.String("sto666"),
FileSharePaidBursting: &storage.FileSharePropertiesFileSharePaidBurstingArgs{
PaidBurstingEnabled: pulumi.Bool(true),
PaidBurstingMaxBandwidthMibps: pulumi.Int(10340),
PaidBurstingMaxIops: pulumi.Int(102400),
},
ResourceGroupName: pulumi.String("res346"),
ShareName: pulumi.String("share1235"),
})
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.storage.FileShare;
import com.pulumi.azurenative.storage.FileShareArgs;
import com.pulumi.azurenative.storage.inputs.FileSharePropertiesFileSharePaidBurstingArgs;
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()
.accountName("sto666")
.fileSharePaidBursting(FileSharePropertiesFileSharePaidBurstingArgs.builder()
.paidBurstingEnabled(true)
.paidBurstingMaxBandwidthMibps(10340)
.paidBurstingMaxIops(102400)
.build())
.resourceGroupName("res346")
.shareName("share1235")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const fileShare = new azure_native.storage.FileShare("fileShare", {
accountName: "sto666",
fileSharePaidBursting: {
paidBurstingEnabled: true,
paidBurstingMaxBandwidthMibps: 10340,
paidBurstingMaxIops: 102400,
},
resourceGroupName: "res346",
shareName: "share1235",
});
import pulumi
import pulumi_azure_native as azure_native
file_share = azure_native.storage.FileShare("fileShare",
account_name="sto666",
file_share_paid_bursting={
"paid_bursting_enabled": True,
"paid_bursting_max_bandwidth_mibps": 10340,
"paid_bursting_max_iops": 102400,
},
resource_group_name="res346",
share_name="share1235")
resources:
fileShare:
type: azure-native:storage:FileShare
properties:
accountName: sto666
fileSharePaidBursting:
paidBurstingEnabled: true
paidBurstingMaxBandwidthMibps: 10340
paidBurstingMaxIops: 102400
resourceGroupName: res346
shareName: share1235
PutSharesProvisionedV2
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var fileShare = new AzureNative.Storage.FileShare("fileShare", new()
{
AccountName = "sto666",
ProvisionedBandwidthMibps = 200,
ProvisionedIops = 5000,
ResourceGroupName = "res346",
ShareName = "share1235",
ShareQuota = 100,
});
});
package main
import (
storage "github.com/pulumi/pulumi-azure-native-sdk/storage/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := storage.NewFileShare(ctx, "fileShare", &storage.FileShareArgs{
AccountName: pulumi.String("sto666"),
ProvisionedBandwidthMibps: pulumi.Int(200),
ProvisionedIops: pulumi.Int(5000),
ResourceGroupName: pulumi.String("res346"),
ShareName: pulumi.String("share1235"),
ShareQuota: pulumi.Int(100),
})
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.storage.FileShare;
import com.pulumi.azurenative.storage.FileShareArgs;
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()
.accountName("sto666")
.provisionedBandwidthMibps(200)
.provisionedIops(5000)
.resourceGroupName("res346")
.shareName("share1235")
.shareQuota(100)
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const fileShare = new azure_native.storage.FileShare("fileShare", {
accountName: "sto666",
provisionedBandwidthMibps: 200,
provisionedIops: 5000,
resourceGroupName: "res346",
shareName: "share1235",
shareQuota: 100,
});
import pulumi
import pulumi_azure_native as azure_native
file_share = azure_native.storage.FileShare("fileShare",
account_name="sto666",
provisioned_bandwidth_mibps=200,
provisioned_iops=5000,
resource_group_name="res346",
share_name="share1235",
share_quota=100)
resources:
fileShare:
type: azure-native:storage:FileShare
properties:
accountName: sto666
provisionedBandwidthMibps: 200
provisionedIops: 5000
resourceGroupName: res346
shareName: share1235
shareQuota: 100
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,
account_name: Optional[str] = None,
provisioned_bandwidth_mibps: Optional[int] = None,
expand: Optional[str] = None,
file_share_paid_bursting: Optional[FileSharePropertiesFileSharePaidBurstingArgs] = None,
metadata: Optional[Mapping[str, str]] = None,
access_tier: Optional[Union[str, ShareAccessTier]] = None,
provisioned_iops: Optional[int] = None,
enabled_protocols: Optional[Union[str, EnabledProtocols]] = None,
root_squash: Optional[Union[str, RootSquashType]] = None,
share_name: Optional[str] = None,
share_quota: Optional[int] = None,
signed_identifiers: Optional[Sequence[SignedIdentifierArgs]] = 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:storage: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.Storage.FileShare("fileShareResource", new()
{
ResourceGroupName = "string",
AccountName = "string",
ProvisionedBandwidthMibps = 0,
Expand = "string",
FileSharePaidBursting = new AzureNative.Storage.Inputs.FileSharePropertiesFileSharePaidBurstingArgs
{
PaidBurstingEnabled = false,
PaidBurstingMaxBandwidthMibps = 0,
PaidBurstingMaxIops = 0,
},
Metadata =
{
{ "string", "string" },
},
AccessTier = "string",
ProvisionedIops = 0,
EnabledProtocols = "string",
RootSquash = "string",
ShareName = "string",
ShareQuota = 0,
SignedIdentifiers = new[]
{
new AzureNative.Storage.Inputs.SignedIdentifierArgs
{
AccessPolicy = new AzureNative.Storage.Inputs.AccessPolicyArgs
{
ExpiryTime = "string",
Permission = "string",
StartTime = "string",
},
Id = "string",
},
},
});
example, err := storage.NewFileShare(ctx, "fileShareResource", &storage.FileShareArgs{
ResourceGroupName: pulumi.String("string"),
AccountName: pulumi.String("string"),
ProvisionedBandwidthMibps: pulumi.Int(0),
Expand: pulumi.String("string"),
FileSharePaidBursting: &storage.FileSharePropertiesFileSharePaidBurstingArgs{
PaidBurstingEnabled: pulumi.Bool(false),
PaidBurstingMaxBandwidthMibps: pulumi.Int(0),
PaidBurstingMaxIops: pulumi.Int(0),
},
Metadata: pulumi.StringMap{
"string": pulumi.String("string"),
},
AccessTier: pulumi.String("string"),
ProvisionedIops: pulumi.Int(0),
EnabledProtocols: pulumi.String("string"),
RootSquash: pulumi.String("string"),
ShareName: pulumi.String("string"),
ShareQuota: pulumi.Int(0),
SignedIdentifiers: storage.SignedIdentifierArray{
&storage.SignedIdentifierArgs{
AccessPolicy: &storage.AccessPolicyArgs{
ExpiryTime: pulumi.String("string"),
Permission: pulumi.String("string"),
StartTime: pulumi.String("string"),
},
Id: pulumi.String("string"),
},
},
})
var fileShareResource = new FileShare("fileShareResource", FileShareArgs.builder()
.resourceGroupName("string")
.accountName("string")
.provisionedBandwidthMibps(0)
.expand("string")
.fileSharePaidBursting(FileSharePropertiesFileSharePaidBurstingArgs.builder()
.paidBurstingEnabled(false)
.paidBurstingMaxBandwidthMibps(0)
.paidBurstingMaxIops(0)
.build())
.metadata(Map.of("string", "string"))
.accessTier("string")
.provisionedIops(0)
.enabledProtocols("string")
.rootSquash("string")
.shareName("string")
.shareQuota(0)
.signedIdentifiers(SignedIdentifierArgs.builder()
.accessPolicy(AccessPolicyArgs.builder()
.expiryTime("string")
.permission("string")
.startTime("string")
.build())
.id("string")
.build())
.build());
file_share_resource = azure_native.storage.FileShare("fileShareResource",
resource_group_name="string",
account_name="string",
provisioned_bandwidth_mibps=0,
expand="string",
file_share_paid_bursting={
"paid_bursting_enabled": False,
"paid_bursting_max_bandwidth_mibps": 0,
"paid_bursting_max_iops": 0,
},
metadata={
"string": "string",
},
access_tier="string",
provisioned_iops=0,
enabled_protocols="string",
root_squash="string",
share_name="string",
share_quota=0,
signed_identifiers=[{
"access_policy": {
"expiry_time": "string",
"permission": "string",
"start_time": "string",
},
"id": "string",
}])
const fileShareResource = new azure_native.storage.FileShare("fileShareResource", {
resourceGroupName: "string",
accountName: "string",
provisionedBandwidthMibps: 0,
expand: "string",
fileSharePaidBursting: {
paidBurstingEnabled: false,
paidBurstingMaxBandwidthMibps: 0,
paidBurstingMaxIops: 0,
},
metadata: {
string: "string",
},
accessTier: "string",
provisionedIops: 0,
enabledProtocols: "string",
rootSquash: "string",
shareName: "string",
shareQuota: 0,
signedIdentifiers: [{
accessPolicy: {
expiryTime: "string",
permission: "string",
startTime: "string",
},
id: "string",
}],
});
type: azure-native:storage:FileShare
properties:
accessTier: string
accountName: string
enabledProtocols: string
expand: string
fileSharePaidBursting:
paidBurstingEnabled: false
paidBurstingMaxBandwidthMibps: 0
paidBurstingMaxIops: 0
metadata:
string: string
provisionedBandwidthMibps: 0
provisionedIops: 0
resourceGroupName: string
rootSquash: string
shareName: string
shareQuota: 0
signedIdentifiers:
- accessPolicy:
expiryTime: string
permission: string
startTime: string
id: 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:
- Account
Name string - The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
- Resource
Group stringName - The name of the resource group within the user's subscription. The name is case insensitive.
- Access
Tier string | Pulumi.Azure Native. Storage. Share Access Tier - Access tier for specific share. GpV2 account can choose between TransactionOptimized (default), Hot, and Cool. FileStorage account can choose Premium.
- Enabled
Protocols string | Pulumi.Azure Native. Storage. Enabled Protocols - The authentication protocol that is used for the file share. Can only be specified when creating a share.
- Expand string
- Optional, used to expand the properties within share's properties. Valid values are: snapshots. Should be passed as a string with delimiter ','
- Pulumi.
Azure Native. Storage. Inputs. File Share Properties File Share Paid Bursting - File Share Paid Bursting properties.
- Metadata Dictionary<string, string>
- A name-value pair to associate with the share as metadata.
- Provisioned
Bandwidth intMibps - The provisioned bandwidth of the share, in mebibytes per second. This property is only for file shares created under Files Provisioned v2 account type. Please refer to the GetFileServiceUsage API response for the minimum and maximum allowed value for provisioned bandwidth.
- Provisioned
Iops int - The provisioned IOPS of the share. This property is only for file shares created under Files Provisioned v2 account type. Please refer to the GetFileServiceUsage API response for the minimum and maximum allowed value for provisioned IOPS.
- Root
Squash string | Pulumi.Azure Native. Storage. Root Squash Type - The property is for NFS share only. The default is NoRootSquash.
- string
- The name of the file share within the specified storage account. File share names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.
- int
- The provisioned size of the share, in gibibytes. Must be greater than 0, and less than or equal to 5TB (5120). For Large File Shares, the maximum size is 102400. For file shares created under Files Provisioned v2 account type, please refer to the GetFileServiceUsage API response for the minimum and maximum allowed provisioned storage size.
- Signed
Identifiers List<Pulumi.Azure Native. Storage. Inputs. Signed Identifier> - List of stored access policies specified on the share.
- Account
Name string - The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
- Resource
Group stringName - The name of the resource group within the user's subscription. The name is case insensitive.
- Access
Tier string | ShareAccess Tier - Access tier for specific share. GpV2 account can choose between TransactionOptimized (default), Hot, and Cool. FileStorage account can choose Premium.
- Enabled
Protocols string | EnabledProtocols - The authentication protocol that is used for the file share. Can only be specified when creating a share.
- Expand string
- Optional, used to expand the properties within share's properties. Valid values are: snapshots. Should be passed as a string with delimiter ','
- File
Share Properties File Share Paid Bursting Args - File Share Paid Bursting properties.
- Metadata map[string]string
- A name-value pair to associate with the share as metadata.
- Provisioned
Bandwidth intMibps - The provisioned bandwidth of the share, in mebibytes per second. This property is only for file shares created under Files Provisioned v2 account type. Please refer to the GetFileServiceUsage API response for the minimum and maximum allowed value for provisioned bandwidth.
- Provisioned
Iops int - The provisioned IOPS of the share. This property is only for file shares created under Files Provisioned v2 account type. Please refer to the GetFileServiceUsage API response for the minimum and maximum allowed value for provisioned IOPS.
- Root
Squash string | RootSquash Type - The property is for NFS share only. The default is NoRootSquash.
- string
- The name of the file share within the specified storage account. File share names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.
- int
- The provisioned size of the share, in gibibytes. Must be greater than 0, and less than or equal to 5TB (5120). For Large File Shares, the maximum size is 102400. For file shares created under Files Provisioned v2 account type, please refer to the GetFileServiceUsage API response for the minimum and maximum allowed provisioned storage size.
- Signed
Identifiers []SignedIdentifier Args - List of stored access policies specified on the share.
- account
Name String - The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
- resource
Group StringName - The name of the resource group within the user's subscription. The name is case insensitive.
- access
Tier String | ShareAccess Tier - Access tier for specific share. GpV2 account can choose between TransactionOptimized (default), Hot, and Cool. FileStorage account can choose Premium.
- enabled
Protocols String | EnabledProtocols - The authentication protocol that is used for the file share. Can only be specified when creating a share.
- expand String
- Optional, used to expand the properties within share's properties. Valid values are: snapshots. Should be passed as a string with delimiter ','
- File
Share Properties File Share Paid Bursting - File Share Paid Bursting properties.
- metadata Map<String,String>
- A name-value pair to associate with the share as metadata.
- provisioned
Bandwidth IntegerMibps - The provisioned bandwidth of the share, in mebibytes per second. This property is only for file shares created under Files Provisioned v2 account type. Please refer to the GetFileServiceUsage API response for the minimum and maximum allowed value for provisioned bandwidth.
- provisioned
Iops Integer - The provisioned IOPS of the share. This property is only for file shares created under Files Provisioned v2 account type. Please refer to the GetFileServiceUsage API response for the minimum and maximum allowed value for provisioned IOPS.
- root
Squash String | RootSquash Type - The property is for NFS share only. The default is NoRootSquash.
- String
- The name of the file share within the specified storage account. File share names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.
- Integer
- The provisioned size of the share, in gibibytes. Must be greater than 0, and less than or equal to 5TB (5120). For Large File Shares, the maximum size is 102400. For file shares created under Files Provisioned v2 account type, please refer to the GetFileServiceUsage API response for the minimum and maximum allowed provisioned storage size.
- signed
Identifiers List<SignedIdentifier> - List of stored access policies specified on the share.
- account
Name string - The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
- resource
Group stringName - The name of the resource group within the user's subscription. The name is case insensitive.
- access
Tier string | ShareAccess Tier - Access tier for specific share. GpV2 account can choose between TransactionOptimized (default), Hot, and Cool. FileStorage account can choose Premium.
- enabled
Protocols string | EnabledProtocols - The authentication protocol that is used for the file share. Can only be specified when creating a share.
- expand string
- Optional, used to expand the properties within share's properties. Valid values are: snapshots. Should be passed as a string with delimiter ','
- File
Share Properties File Share Paid Bursting - File Share Paid Bursting properties.
- metadata {[key: string]: string}
- A name-value pair to associate with the share as metadata.
- provisioned
Bandwidth numberMibps - The provisioned bandwidth of the share, in mebibytes per second. This property is only for file shares created under Files Provisioned v2 account type. Please refer to the GetFileServiceUsage API response for the minimum and maximum allowed value for provisioned bandwidth.
- provisioned
Iops number - The provisioned IOPS of the share. This property is only for file shares created under Files Provisioned v2 account type. Please refer to the GetFileServiceUsage API response for the minimum and maximum allowed value for provisioned IOPS.
- root
Squash string | RootSquash Type - The property is for NFS share only. The default is NoRootSquash.
- string
- The name of the file share within the specified storage account. File share names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.
- number
- The provisioned size of the share, in gibibytes. Must be greater than 0, and less than or equal to 5TB (5120). For Large File Shares, the maximum size is 102400. For file shares created under Files Provisioned v2 account type, please refer to the GetFileServiceUsage API response for the minimum and maximum allowed provisioned storage size.
- signed
Identifiers SignedIdentifier[] - List of stored access policies specified on the share.
- account_
name str - The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
- resource_
group_ strname - The name of the resource group within the user's subscription. The name is case insensitive.
- access_
tier str | ShareAccess Tier - Access tier for specific share. GpV2 account can choose between TransactionOptimized (default), Hot, and Cool. FileStorage account can choose Premium.
- enabled_
protocols str | EnabledProtocols - The authentication protocol that is used for the file share. Can only be specified when creating a share.
- expand str
- Optional, used to expand the properties within share's properties. Valid values are: snapshots. Should be passed as a string with delimiter ','
- File
Share Properties File Share Paid Bursting Args - File Share Paid Bursting properties.
- metadata Mapping[str, str]
- A name-value pair to associate with the share as metadata.
- provisioned_
bandwidth_ intmibps - The provisioned bandwidth of the share, in mebibytes per second. This property is only for file shares created under Files Provisioned v2 account type. Please refer to the GetFileServiceUsage API response for the minimum and maximum allowed value for provisioned bandwidth.
- provisioned_
iops int - The provisioned IOPS of the share. This property is only for file shares created under Files Provisioned v2 account type. Please refer to the GetFileServiceUsage API response for the minimum and maximum allowed value for provisioned IOPS.
- root_
squash str | RootSquash Type - The property is for NFS share only. The default is NoRootSquash.
- str
- The name of the file share within the specified storage account. File share names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.
- int
- The provisioned size of the share, in gibibytes. Must be greater than 0, and less than or equal to 5TB (5120). For Large File Shares, the maximum size is 102400. For file shares created under Files Provisioned v2 account type, please refer to the GetFileServiceUsage API response for the minimum and maximum allowed provisioned storage size.
- signed_
identifiers Sequence[SignedIdentifier Args] - List of stored access policies specified on the share.
- account
Name String - The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
- resource
Group StringName - The name of the resource group within the user's subscription. The name is case insensitive.
- access
Tier String | "TransactionOptimized" | "Hot" | "Cool" | "Premium" - Access tier for specific share. GpV2 account can choose between TransactionOptimized (default), Hot, and Cool. FileStorage account can choose Premium.
- enabled
Protocols String | "SMB" | "NFS" - The authentication protocol that is used for the file share. Can only be specified when creating a share.
- expand String
- Optional, used to expand the properties within share's properties. Valid values are: snapshots. Should be passed as a string with delimiter ','
- Property Map
- File Share Paid Bursting properties.
- metadata Map<String>
- A name-value pair to associate with the share as metadata.
- provisioned
Bandwidth NumberMibps - The provisioned bandwidth of the share, in mebibytes per second. This property is only for file shares created under Files Provisioned v2 account type. Please refer to the GetFileServiceUsage API response for the minimum and maximum allowed value for provisioned bandwidth.
- provisioned
Iops Number - The provisioned IOPS of the share. This property is only for file shares created under Files Provisioned v2 account type. Please refer to the GetFileServiceUsage API response for the minimum and maximum allowed value for provisioned IOPS.
- root
Squash String | "NoRoot Squash" | "Root Squash" | "All Squash" - The property is for NFS share only. The default is NoRootSquash.
- String
- The name of the file share within the specified storage account. File share names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.
- Number
- The provisioned size of the share, in gibibytes. Must be greater than 0, and less than or equal to 5TB (5120). For Large File Shares, the maximum size is 102400. For file shares created under Files Provisioned v2 account type, please refer to the GetFileServiceUsage API response for the minimum and maximum allowed provisioned storage size.
- signed
Identifiers List<Property Map> - List of stored access policies specified on the share.
Outputs
All input properties are implicitly available as output properties. Additionally, the FileShare resource produces the following output properties:
- Access
Tier stringChange Time - Indicates the last modification time for share access tier.
- Access
Tier stringStatus - Indicates if there is a pending transition for access tier.
- Azure
Api stringVersion - The Azure API version of the resource.
- Deleted bool
- Indicates whether the share was deleted.
- Deleted
Time string - The deleted time if the share was deleted.
- Etag string
- Resource Etag.
- Id string
- The provider-assigned unique ID for this managed resource.
- Included
Burst intIops - The calculated burst IOPS of the share. This property is only for file shares created under Files Provisioned v2 account type.
- Last
Modified stringTime - Returns the date and time the share was last modified.
- Lease
Duration string - Specifies whether the lease on a share is of infinite or fixed duration, only when the share is leased.
- Lease
State string - Lease state of the share.
- Lease
Status string - The lease status of the share.
- Max
Burst doubleCredits For Iops - The calculated maximum burst credits for the share. This property is only for file shares created under Files Provisioned v2 account type.
- Name string
- The name of the resource
- Next
Allowed stringProvisioned Bandwidth Downgrade Time - Returns the next allowed provisioned bandwidth downgrade time for the share. This property is only for file shares created under Files Provisioned v2 account type.
- Next
Allowed stringProvisioned Iops Downgrade Time - Returns the next allowed provisioned IOPS downgrade time for the share. This property is only for file shares created under Files Provisioned v2 account type.
- Next
Allowed stringQuota Downgrade Time - Returns the next allowed provisioned storage size downgrade time for the share. This property is only for file shares created under Files Provisioned v1 SSD and Files Provisioned v2 account type
- Remaining
Retention intDays - Remaining retention days for share that was soft deleted.
- double
- The approximate size of the data stored on the share. Note that this value may not include all recently created or recently resized files.
- Snapshot
Time string - Creation time of share snapshot returned in the response of list shares with expand param "snapshots".
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Version string
- The version of the share.
- Access
Tier stringChange Time - Indicates the last modification time for share access tier.
- Access
Tier stringStatus - Indicates if there is a pending transition for access tier.
- Azure
Api stringVersion - The Azure API version of the resource.
- Deleted bool
- Indicates whether the share was deleted.
- Deleted
Time string - The deleted time if the share was deleted.
- Etag string
- Resource Etag.
- Id string
- The provider-assigned unique ID for this managed resource.
- Included
Burst intIops - The calculated burst IOPS of the share. This property is only for file shares created under Files Provisioned v2 account type.
- Last
Modified stringTime - Returns the date and time the share was last modified.
- Lease
Duration string - Specifies whether the lease on a share is of infinite or fixed duration, only when the share is leased.
- Lease
State string - Lease state of the share.
- Lease
Status string - The lease status of the share.
- Max
Burst float64Credits For Iops - The calculated maximum burst credits for the share. This property is only for file shares created under Files Provisioned v2 account type.
- Name string
- The name of the resource
- Next
Allowed stringProvisioned Bandwidth Downgrade Time - Returns the next allowed provisioned bandwidth downgrade time for the share. This property is only for file shares created under Files Provisioned v2 account type.
- Next
Allowed stringProvisioned Iops Downgrade Time - Returns the next allowed provisioned IOPS downgrade time for the share. This property is only for file shares created under Files Provisioned v2 account type.
- Next
Allowed stringQuota Downgrade Time - Returns the next allowed provisioned storage size downgrade time for the share. This property is only for file shares created under Files Provisioned v1 SSD and Files Provisioned v2 account type
- Remaining
Retention intDays - Remaining retention days for share that was soft deleted.
- float64
- The approximate size of the data stored on the share. Note that this value may not include all recently created or recently resized files.
- Snapshot
Time string - Creation time of share snapshot returned in the response of list shares with expand param "snapshots".
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Version string
- The version of the share.
- access
Tier StringChange Time - Indicates the last modification time for share access tier.
- access
Tier StringStatus - Indicates if there is a pending transition for access tier.
- azure
Api StringVersion - The Azure API version of the resource.
- deleted Boolean
- Indicates whether the share was deleted.
- deleted
Time String - The deleted time if the share was deleted.
- etag String
- Resource Etag.
- id String
- The provider-assigned unique ID for this managed resource.
- included
Burst IntegerIops - The calculated burst IOPS of the share. This property is only for file shares created under Files Provisioned v2 account type.
- last
Modified StringTime - Returns the date and time the share was last modified.
- lease
Duration String - Specifies whether the lease on a share is of infinite or fixed duration, only when the share is leased.
- lease
State String - Lease state of the share.
- lease
Status String - The lease status of the share.
- max
Burst DoubleCredits For Iops - The calculated maximum burst credits for the share. This property is only for file shares created under Files Provisioned v2 account type.
- name String
- The name of the resource
- next
Allowed StringProvisioned Bandwidth Downgrade Time - Returns the next allowed provisioned bandwidth downgrade time for the share. This property is only for file shares created under Files Provisioned v2 account type.
- next
Allowed StringProvisioned Iops Downgrade Time - Returns the next allowed provisioned IOPS downgrade time for the share. This property is only for file shares created under Files Provisioned v2 account type.
- next
Allowed StringQuota Downgrade Time - Returns the next allowed provisioned storage size downgrade time for the share. This property is only for file shares created under Files Provisioned v1 SSD and Files Provisioned v2 account type
- remaining
Retention IntegerDays - Remaining retention days for share that was soft deleted.
- Double
- The approximate size of the data stored on the share. Note that this value may not include all recently created or recently resized files.
- snapshot
Time String - Creation time of share snapshot returned in the response of list shares with expand param "snapshots".
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- version String
- The version of the share.
- access
Tier stringChange Time - Indicates the last modification time for share access tier.
- access
Tier stringStatus - Indicates if there is a pending transition for access tier.
- azure
Api stringVersion - The Azure API version of the resource.
- deleted boolean
- Indicates whether the share was deleted.
- deleted
Time string - The deleted time if the share was deleted.
- etag string
- Resource Etag.
- id string
- The provider-assigned unique ID for this managed resource.
- included
Burst numberIops - The calculated burst IOPS of the share. This property is only for file shares created under Files Provisioned v2 account type.
- last
Modified stringTime - Returns the date and time the share was last modified.
- lease
Duration string - Specifies whether the lease on a share is of infinite or fixed duration, only when the share is leased.
- lease
State string - Lease state of the share.
- lease
Status string - The lease status of the share.
- max
Burst numberCredits For Iops - The calculated maximum burst credits for the share. This property is only for file shares created under Files Provisioned v2 account type.
- name string
- The name of the resource
- next
Allowed stringProvisioned Bandwidth Downgrade Time - Returns the next allowed provisioned bandwidth downgrade time for the share. This property is only for file shares created under Files Provisioned v2 account type.
- next
Allowed stringProvisioned Iops Downgrade Time - Returns the next allowed provisioned IOPS downgrade time for the share. This property is only for file shares created under Files Provisioned v2 account type.
- next
Allowed stringQuota Downgrade Time - Returns the next allowed provisioned storage size downgrade time for the share. This property is only for file shares created under Files Provisioned v1 SSD and Files Provisioned v2 account type
- remaining
Retention numberDays - Remaining retention days for share that was soft deleted.
- number
- The approximate size of the data stored on the share. Note that this value may not include all recently created or recently resized files.
- snapshot
Time string - Creation time of share snapshot returned in the response of list shares with expand param "snapshots".
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- version string
- The version of the share.
- access_
tier_ strchange_ time - Indicates the last modification time for share access tier.
- access_
tier_ strstatus - Indicates if there is a pending transition for access tier.
- azure_
api_ strversion - The Azure API version of the resource.
- deleted bool
- Indicates whether the share was deleted.
- deleted_
time str - The deleted time if the share was deleted.
- etag str
- Resource Etag.
- id str
- The provider-assigned unique ID for this managed resource.
- included_
burst_ intiops - The calculated burst IOPS of the share. This property is only for file shares created under Files Provisioned v2 account type.
- last_
modified_ strtime - Returns the date and time the share was last modified.
- lease_
duration str - Specifies whether the lease on a share is of infinite or fixed duration, only when the share is leased.
- lease_
state str - Lease state of the share.
- lease_
status str - The lease status of the share.
- max_
burst_ floatcredits_ for_ iops - The calculated maximum burst credits for the share. This property is only for file shares created under Files Provisioned v2 account type.
- name str
- The name of the resource
- next_
allowed_ strprovisioned_ bandwidth_ downgrade_ time - Returns the next allowed provisioned bandwidth downgrade time for the share. This property is only for file shares created under Files Provisioned v2 account type.
- next_
allowed_ strprovisioned_ iops_ downgrade_ time - Returns the next allowed provisioned IOPS downgrade time for the share. This property is only for file shares created under Files Provisioned v2 account type.
- next_
allowed_ strquota_ downgrade_ time - Returns the next allowed provisioned storage size downgrade time for the share. This property is only for file shares created under Files Provisioned v1 SSD and Files Provisioned v2 account type
- remaining_
retention_ intdays - Remaining retention days for share that was soft deleted.
- float
- The approximate size of the data stored on the share. Note that this value may not include all recently created or recently resized files.
- snapshot_
time str - Creation time of share snapshot returned in the response of list shares with expand param "snapshots".
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- version str
- The version of the share.
- access
Tier StringChange Time - Indicates the last modification time for share access tier.
- access
Tier StringStatus - Indicates if there is a pending transition for access tier.
- azure
Api StringVersion - The Azure API version of the resource.
- deleted Boolean
- Indicates whether the share was deleted.
- deleted
Time String - The deleted time if the share was deleted.
- etag String
- Resource Etag.
- id String
- The provider-assigned unique ID for this managed resource.
- included
Burst NumberIops - The calculated burst IOPS of the share. This property is only for file shares created under Files Provisioned v2 account type.
- last
Modified StringTime - Returns the date and time the share was last modified.
- lease
Duration String - Specifies whether the lease on a share is of infinite or fixed duration, only when the share is leased.
- lease
State String - Lease state of the share.
- lease
Status String - The lease status of the share.
- max
Burst NumberCredits For Iops - The calculated maximum burst credits for the share. This property is only for file shares created under Files Provisioned v2 account type.
- name String
- The name of the resource
- next
Allowed StringProvisioned Bandwidth Downgrade Time - Returns the next allowed provisioned bandwidth downgrade time for the share. This property is only for file shares created under Files Provisioned v2 account type.
- next
Allowed StringProvisioned Iops Downgrade Time - Returns the next allowed provisioned IOPS downgrade time for the share. This property is only for file shares created under Files Provisioned v2 account type.
- next
Allowed StringQuota Downgrade Time - Returns the next allowed provisioned storage size downgrade time for the share. This property is only for file shares created under Files Provisioned v1 SSD and Files Provisioned v2 account type
- remaining
Retention NumberDays - Remaining retention days for share that was soft deleted.
- Number
- The approximate size of the data stored on the share. Note that this value may not include all recently created or recently resized files.
- snapshot
Time String - Creation time of share snapshot returned in the response of list shares with expand param "snapshots".
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- version String
- The version of the share.
Supporting Types
AccessPolicy, AccessPolicyArgs
- Expiry
Time string - Expiry time of the access policy
- Permission string
- List of abbreviated permissions.
- Start
Time string - Start time of the access policy
- Expiry
Time string - Expiry time of the access policy
- Permission string
- List of abbreviated permissions.
- Start
Time string - Start time of the access policy
- expiry
Time String - Expiry time of the access policy
- permission String
- List of abbreviated permissions.
- start
Time String - Start time of the access policy
- expiry
Time string - Expiry time of the access policy
- permission string
- List of abbreviated permissions.
- start
Time string - Start time of the access policy
- expiry_
time str - Expiry time of the access policy
- permission str
- List of abbreviated permissions.
- start_
time str - Start time of the access policy
- expiry
Time String - Expiry time of the access policy
- permission String
- List of abbreviated permissions.
- start
Time String - Start time of the access policy
AccessPolicyResponse, AccessPolicyResponseArgs
- Expiry
Time string - Expiry time of the access policy
- Permission string
- List of abbreviated permissions.
- Start
Time string - Start time of the access policy
- Expiry
Time string - Expiry time of the access policy
- Permission string
- List of abbreviated permissions.
- Start
Time string - Start time of the access policy
- expiry
Time String - Expiry time of the access policy
- permission String
- List of abbreviated permissions.
- start
Time String - Start time of the access policy
- expiry
Time string - Expiry time of the access policy
- permission string
- List of abbreviated permissions.
- start
Time string - Start time of the access policy
- expiry_
time str - Expiry time of the access policy
- permission str
- List of abbreviated permissions.
- start_
time str - Start time of the access policy
- expiry
Time String - Expiry time of the access policy
- permission String
- List of abbreviated permissions.
- start
Time String - Start time of the access policy
EnabledProtocols, EnabledProtocolsArgs
- SMB
- SMB
- NFS
- NFS
- Enabled
Protocols SMB - SMB
- Enabled
Protocols NFS - NFS
- SMB
- SMB
- NFS
- NFS
- SMB
- SMB
- NFS
- NFS
- SMB
- SMB
- NFS
- NFS
- "SMB"
- SMB
- "NFS"
- NFS
FileSharePropertiesFileSharePaidBursting, FileSharePropertiesFileSharePaidBurstingArgs
- Paid
Bursting boolEnabled - Indicates whether paid bursting is enabled for the share. This property is only for file shares created under Files Provisioned v1 SSD account type.
- Paid
Bursting intMax Bandwidth Mibps - The maximum paid bursting bandwidth for the share, in mebibytes per second. This property is only for file shares created under Files Provisioned v1 SSD account type. The maximum allowed value is 10340 which is the maximum allowed bandwidth for a share.
- Paid
Bursting intMax Iops - The maximum paid bursting IOPS for the share. This property is only for file shares created under Files Provisioned v1 SSD account type. The maximum allowed value is 102400 which is the maximum allowed IOPS for a share.
- Paid
Bursting boolEnabled - Indicates whether paid bursting is enabled for the share. This property is only for file shares created under Files Provisioned v1 SSD account type.
- Paid
Bursting intMax Bandwidth Mibps - The maximum paid bursting bandwidth for the share, in mebibytes per second. This property is only for file shares created under Files Provisioned v1 SSD account type. The maximum allowed value is 10340 which is the maximum allowed bandwidth for a share.
- Paid
Bursting intMax Iops - The maximum paid bursting IOPS for the share. This property is only for file shares created under Files Provisioned v1 SSD account type. The maximum allowed value is 102400 which is the maximum allowed IOPS for a share.
- paid
Bursting BooleanEnabled - Indicates whether paid bursting is enabled for the share. This property is only for file shares created under Files Provisioned v1 SSD account type.
- paid
Bursting IntegerMax Bandwidth Mibps - The maximum paid bursting bandwidth for the share, in mebibytes per second. This property is only for file shares created under Files Provisioned v1 SSD account type. The maximum allowed value is 10340 which is the maximum allowed bandwidth for a share.
- paid
Bursting IntegerMax Iops - The maximum paid bursting IOPS for the share. This property is only for file shares created under Files Provisioned v1 SSD account type. The maximum allowed value is 102400 which is the maximum allowed IOPS for a share.
- paid
Bursting booleanEnabled - Indicates whether paid bursting is enabled for the share. This property is only for file shares created under Files Provisioned v1 SSD account type.
- paid
Bursting numberMax Bandwidth Mibps - The maximum paid bursting bandwidth for the share, in mebibytes per second. This property is only for file shares created under Files Provisioned v1 SSD account type. The maximum allowed value is 10340 which is the maximum allowed bandwidth for a share.
- paid
Bursting numberMax Iops - The maximum paid bursting IOPS for the share. This property is only for file shares created under Files Provisioned v1 SSD account type. The maximum allowed value is 102400 which is the maximum allowed IOPS for a share.
- paid_
bursting_ boolenabled - Indicates whether paid bursting is enabled for the share. This property is only for file shares created under Files Provisioned v1 SSD account type.
- paid_
bursting_ intmax_ bandwidth_ mibps - The maximum paid bursting bandwidth for the share, in mebibytes per second. This property is only for file shares created under Files Provisioned v1 SSD account type. The maximum allowed value is 10340 which is the maximum allowed bandwidth for a share.
- paid_
bursting_ intmax_ iops - The maximum paid bursting IOPS for the share. This property is only for file shares created under Files Provisioned v1 SSD account type. The maximum allowed value is 102400 which is the maximum allowed IOPS for a share.
- paid
Bursting BooleanEnabled - Indicates whether paid bursting is enabled for the share. This property is only for file shares created under Files Provisioned v1 SSD account type.
- paid
Bursting NumberMax Bandwidth Mibps - The maximum paid bursting bandwidth for the share, in mebibytes per second. This property is only for file shares created under Files Provisioned v1 SSD account type. The maximum allowed value is 10340 which is the maximum allowed bandwidth for a share.
- paid
Bursting NumberMax Iops - The maximum paid bursting IOPS for the share. This property is only for file shares created under Files Provisioned v1 SSD account type. The maximum allowed value is 102400 which is the maximum allowed IOPS for a share.
FileSharePropertiesResponseFileSharePaidBursting, FileSharePropertiesResponseFileSharePaidBurstingArgs
- Paid
Bursting boolEnabled - Indicates whether paid bursting is enabled for the share. This property is only for file shares created under Files Provisioned v1 SSD account type.
- Paid
Bursting intMax Bandwidth Mibps - The maximum paid bursting bandwidth for the share, in mebibytes per second. This property is only for file shares created under Files Provisioned v1 SSD account type. The maximum allowed value is 10340 which is the maximum allowed bandwidth for a share.
- Paid
Bursting intMax Iops - The maximum paid bursting IOPS for the share. This property is only for file shares created under Files Provisioned v1 SSD account type. The maximum allowed value is 102400 which is the maximum allowed IOPS for a share.
- Paid
Bursting boolEnabled - Indicates whether paid bursting is enabled for the share. This property is only for file shares created under Files Provisioned v1 SSD account type.
- Paid
Bursting intMax Bandwidth Mibps - The maximum paid bursting bandwidth for the share, in mebibytes per second. This property is only for file shares created under Files Provisioned v1 SSD account type. The maximum allowed value is 10340 which is the maximum allowed bandwidth for a share.
- Paid
Bursting intMax Iops - The maximum paid bursting IOPS for the share. This property is only for file shares created under Files Provisioned v1 SSD account type. The maximum allowed value is 102400 which is the maximum allowed IOPS for a share.
- paid
Bursting BooleanEnabled - Indicates whether paid bursting is enabled for the share. This property is only for file shares created under Files Provisioned v1 SSD account type.
- paid
Bursting IntegerMax Bandwidth Mibps - The maximum paid bursting bandwidth for the share, in mebibytes per second. This property is only for file shares created under Files Provisioned v1 SSD account type. The maximum allowed value is 10340 which is the maximum allowed bandwidth for a share.
- paid
Bursting IntegerMax Iops - The maximum paid bursting IOPS for the share. This property is only for file shares created under Files Provisioned v1 SSD account type. The maximum allowed value is 102400 which is the maximum allowed IOPS for a share.
- paid
Bursting booleanEnabled - Indicates whether paid bursting is enabled for the share. This property is only for file shares created under Files Provisioned v1 SSD account type.
- paid
Bursting numberMax Bandwidth Mibps - The maximum paid bursting bandwidth for the share, in mebibytes per second. This property is only for file shares created under Files Provisioned v1 SSD account type. The maximum allowed value is 10340 which is the maximum allowed bandwidth for a share.
- paid
Bursting numberMax Iops - The maximum paid bursting IOPS for the share. This property is only for file shares created under Files Provisioned v1 SSD account type. The maximum allowed value is 102400 which is the maximum allowed IOPS for a share.
- paid_
bursting_ boolenabled - Indicates whether paid bursting is enabled for the share. This property is only for file shares created under Files Provisioned v1 SSD account type.
- paid_
bursting_ intmax_ bandwidth_ mibps - The maximum paid bursting bandwidth for the share, in mebibytes per second. This property is only for file shares created under Files Provisioned v1 SSD account type. The maximum allowed value is 10340 which is the maximum allowed bandwidth for a share.
- paid_
bursting_ intmax_ iops - The maximum paid bursting IOPS for the share. This property is only for file shares created under Files Provisioned v1 SSD account type. The maximum allowed value is 102400 which is the maximum allowed IOPS for a share.
- paid
Bursting BooleanEnabled - Indicates whether paid bursting is enabled for the share. This property is only for file shares created under Files Provisioned v1 SSD account type.
- paid
Bursting NumberMax Bandwidth Mibps - The maximum paid bursting bandwidth for the share, in mebibytes per second. This property is only for file shares created under Files Provisioned v1 SSD account type. The maximum allowed value is 10340 which is the maximum allowed bandwidth for a share.
- paid
Bursting NumberMax Iops - The maximum paid bursting IOPS for the share. This property is only for file shares created under Files Provisioned v1 SSD account type. The maximum allowed value is 102400 which is the maximum allowed IOPS for a share.
RootSquashType, RootSquashTypeArgs
- No
Root Squash - NoRootSquash
- Root
Squash - RootSquash
- All
Squash - AllSquash
- Root
Squash Type No Root Squash - NoRootSquash
- Root
Squash Type Root Squash - RootSquash
- Root
Squash Type All Squash - AllSquash
- No
Root Squash - NoRootSquash
- Root
Squash - RootSquash
- All
Squash - AllSquash
- No
Root Squash - NoRootSquash
- Root
Squash - RootSquash
- All
Squash - AllSquash
- NO_ROOT_SQUASH
- NoRootSquash
- ROOT_SQUASH
- RootSquash
- ALL_SQUASH
- AllSquash
- "No
Root Squash" - NoRootSquash
- "Root
Squash" - RootSquash
- "All
Squash" - AllSquash
ShareAccessTier, ShareAccessTierArgs
- Transaction
Optimized - TransactionOptimized
- Hot
- Hot
- Cool
- Cool
- Premium
- Premium
- Share
Access Tier Transaction Optimized - TransactionOptimized
- Share
Access Tier Hot - Hot
- Share
Access Tier Cool - Cool
- Share
Access Tier Premium - Premium
- Transaction
Optimized - TransactionOptimized
- Hot
- Hot
- Cool
- Cool
- Premium
- Premium
- Transaction
Optimized - TransactionOptimized
- Hot
- Hot
- Cool
- Cool
- Premium
- Premium
- TRANSACTION_OPTIMIZED
- TransactionOptimized
- HOT
- Hot
- COOL
- Cool
- PREMIUM
- Premium
- "Transaction
Optimized" - TransactionOptimized
- "Hot"
- Hot
- "Cool"
- Cool
- "Premium"
- Premium
SignedIdentifier, SignedIdentifierArgs
- Access
Policy Pulumi.Azure Native. Storage. Inputs. Access Policy - Access policy
- Id string
- An unique identifier of the stored access policy.
- Access
Policy AccessPolicy - Access policy
- Id string
- An unique identifier of the stored access policy.
- access
Policy AccessPolicy - Access policy
- id String
- An unique identifier of the stored access policy.
- access
Policy AccessPolicy - Access policy
- id string
- An unique identifier of the stored access policy.
- access_
policy AccessPolicy - Access policy
- id str
- An unique identifier of the stored access policy.
- access
Policy Property Map - Access policy
- id String
- An unique identifier of the stored access policy.
SignedIdentifierResponse, SignedIdentifierResponseArgs
- Access
Policy Pulumi.Azure Native. Storage. Inputs. Access Policy Response - Access policy
- Id string
- An unique identifier of the stored access policy.
- Access
Policy AccessPolicy Response - Access policy
- Id string
- An unique identifier of the stored access policy.
- access
Policy AccessPolicy Response - Access policy
- id String
- An unique identifier of the stored access policy.
- access
Policy AccessPolicy Response - Access policy
- id string
- An unique identifier of the stored access policy.
- access_
policy AccessPolicy Response - Access policy
- id str
- An unique identifier of the stored access policy.
- access
Policy Property Map - Access policy
- id String
- An unique identifier of the stored access policy.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:storage:FileShare share1235 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/fileServices/default/shares/{shareName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0