Package version:

Interface FileShareLimits

Minimum and maximum provisioned storage, IOPS and bandwidth limits for a file share in the storage account.

interface FileShareLimits {
    maxProvisionedBandwidthMiBPerSec?: number;
    maxProvisionedIops?: number;
    maxProvisionedStorageGiB?: number;
    minProvisionedBandwidthMiBPerSec?: number;
    minProvisionedIops?: number;
    minProvisionedStorageGiB?: number;
}

Properties

maxProvisionedBandwidthMiBPerSec?: number

The maximum provisioned bandwidth limit in mebibytes per second for a file share in the storage account. NOTE: This property will not be serialized. It can only be populated by the server.

maxProvisionedIops?: number

The maximum provisioned IOPS limit for a file share in the storage account. NOTE: This property will not be serialized. It can only be populated by the server.

maxProvisionedStorageGiB?: number

The maximum provisioned storage quota limit in gibibytes for a file share in the storage account. NOTE: This property will not be serialized. It can only be populated by the server.

minProvisionedBandwidthMiBPerSec?: number

The minimum provisioned bandwidth limit in mebibytes per second for a file share in the storage account. NOTE: This property will not be serialized. It can only be populated by the server.

minProvisionedIops?: number

The minimum provisioned IOPS limit for a file share in the storage account. NOTE: This property will not be serialized. It can only be populated by the server.

minProvisionedStorageGiB?: number

The minimum provisioned storage quota limit in gibibytes for a file share in the storage account. NOTE: This property will not be serialized. It can only be populated by the server.