ArmStorageModelFactory.FileShareLimits Method

Definition

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

minProvisionedStorageGiB
Nullable<Int32>

The minimum provisioned storage quota limit in gibibytes for a file share in the storage account.

maxProvisionedStorageGiB
Nullable<Int32>

The maximum provisioned storage quota limit in gibibytes for a file share in the storage account.

minProvisionedIops
Nullable<Int32>

The minimum provisioned IOPS limit for a file share in the storage account.

maxProvisionedIops
Nullable<Int32>

The maximum provisioned IOPS limit for a file share in the storage account.

minProvisionedBandwidthMiBPerSec
Nullable<Int32>

The minimum provisioned bandwidth limit in mebibytes per second for a file share in the storage account.

maxProvisionedBandwidthMiBPerSec
Nullable<Int32>

The maximum provisioned bandwidth limit in mebibytes per second for a file share in the storage account.

Returns

A new FileShareLimits instance for mocking.

Applies to