Skip to content

Commit 656806f

Browse files
author
Maddie Clayton
authored
Merge pull request Azure#6813 from wastoresh/sharequota
[Storage] Remove the quota limitation in Set-AzureStorageShareQuota
2 parents 2317d46 + 5189edd commit 656806f

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

src/Storage/Commands.Storage/ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
- Additional information about change #1
1919
-->
2020
## Current Release
21+
* Remove the 5TB limitation for Azure File Share quota
22+
- Set-AzureStorageShareQuota
2123

2224
## Version 4.4.0
2325
* Updated all help files to include full parameter types and correct input/output types.

src/Storage/Commands.Storage/File/Cmdlet/SetAzureStorageShareQuota.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ public class SetAzureStorageShareQuota : AzureStorageFileCmdletBase
4343

4444
[Parameter(Position = 1, Mandatory = true,
4545
HelpMessage = "Share Quota")]
46-
[ValidateRange(1, 5120)]
4746
public int Quota { get; set; }
4847

4948
/// <summary>

src/Storage/Commands.Storage/help/Set-AzureStorageShareQuota.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ Accept wildcard characters: False
110110
111111
### -Quota
112112
Specifies the quota value in gigabytes (GB).
113+
See the quota limitation in https://docs.microsoft.com/en-us/azure/azure-subscription-service-limits#azure-files-limits.
113114
114115
```yaml
115116
Type: System.Int32

0 commit comments

Comments
 (0)