ArmStorageModelFactory.FileShareLimits Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Minimum and maximum provisioned storage, IOPS and bandwidth limits for a file share in the storage account.
public static Azure.ResourceManager.Storage.Models.FileShareLimits FileShareLimits(int? minProvisionedStorageGiB = default, int? maxProvisionedStorageGiB = default, int? minProvisionedIops = default, int? maxProvisionedIops = default, int? minProvisionedBandwidthMiBPerSec = default, int? maxProvisionedBandwidthMiBPerSec = default);
static member FileShareLimits : Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> -> Azure.ResourceManager.Storage.Models.FileShareLimits
Public Shared Function FileShareLimits (Optional minProvisionedStorageGiB As Nullable(Of Integer) = Nothing, Optional maxProvisionedStorageGiB As Nullable(Of Integer) = Nothing, Optional minProvisionedIops As Nullable(Of Integer) = Nothing, Optional maxProvisionedIops As Nullable(Of Integer) = Nothing, Optional minProvisionedBandwidthMiBPerSec As Nullable(Of Integer) = Nothing, Optional maxProvisionedBandwidthMiBPerSec As Nullable(Of Integer) = Nothing) As FileShareLimits
Parameters
The minimum provisioned storage quota limit in gibibytes for a file share in the storage account.
The maximum provisioned storage quota limit in gibibytes for a file share in the storage account.
The minimum provisioned IOPS limit for a file share in the storage account.
The maximum provisioned IOPS limit for a file share in the storage account.
The minimum provisioned bandwidth limit in mebibytes per second for a file share in the storage account.
The maximum provisioned bandwidth limit in mebibytes per second for a file share in the storage account.
Returns
A new FileShareLimits instance for mocking.