Skip to content

[Storage] Remove the quota limitation in Set-AzureStorageShareQuota #6813

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 31, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/Storage/Commands.Storage/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Current Release
* Remove the 5TB limitation for Azure File Share quota
- Set-AzureStorageShareQuota

## Version 4.4.0
* Updated all help files to include full parameter types and correct input/output types.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ public class SetAzureStorageShareQuota : AzureStorageFileCmdletBase

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

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ Accept wildcard characters: False
### -Quota
Specifies the quota value in gigabytes (GB).
See the quota limitation in https://docs.microsoft.com/en-us/azure/azure-subscription-service-limits#azure-files-limits.
```yaml
Type: System.Int32
Expand Down