Skip to content
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
4 changes: 2 additions & 2 deletions eng/mgmt/mgmtmetadata/storage_resource-manager.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ Commencing code generation
Generating CSharp code
Executing AutoRest command
cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/storage/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp.output-folder=C:\code\srpsdk\sdk\storage\Microsoft.Azure.Management.Storage\src\Generated
2019-11-22 07:15:56 UTC
2019-12-04 03:39:46 UTC
Azure-rest-api-specs repository information
GitHub fork: Azure
Branch: master
Commit: ef5bff591188a232471a8f81d7bc02c7c9f7d68d
Commit: 0cf70260108cb40bc68d408674c187ed065f8c64
AutoRest information
Requested version: latest
Bootstrapper version: autorest@2.0.4407
6 changes: 5 additions & 1 deletion sdk/storage/Microsoft.Azure.Management.Storage/changelog.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
## Microsoft.Azure.Management.Storage release notes

### Changes in 14.2.0

- Change the maximum limitation for share size from 100000(GiB) to 102400(GiB)

### Changes in 14.1.0

- Change the maximum limitation for share size from 5120(GB) too 100000(GB)
- Change the maximum limitation for share size from 5120(GiB) to 100000(GiB)
- Add Sku to Blob Service Properties
- Support Share Delete Retention Policy on File Service Properties

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ internal FileSharesOperations(StorageManagementClient client)
/// <param name='shareQuota'>
/// The maximum size of the share, in gigabytes. Must be greater than 0, and
/// less than or equal to 5TB (5120). For Large File Shares, the maximum size
/// is 100000.
/// is 102400.
/// </param>
/// <param name='customHeaders'>
/// Headers that will be added to request.
Expand Down Expand Up @@ -429,9 +429,9 @@ internal FileSharesOperations(StorageManagementClient client)
throw new ValidationException(ValidationRules.MinLength, "Client.SubscriptionId", 1);
}
}
if (shareQuota > 100000)
if (shareQuota > 102400)
{
throw new ValidationException(ValidationRules.InclusiveMaximum, "shareQuota", 100000);
throw new ValidationException(ValidationRules.InclusiveMaximum, "shareQuota", 102400);
}
if (shareQuota < 1)
{
Expand Down Expand Up @@ -644,7 +644,7 @@ internal FileSharesOperations(StorageManagementClient client)
/// <param name='shareQuota'>
/// The maximum size of the share, in gigabytes. Must be greater than 0, and
/// less than or equal to 5TB (5120). For Large File Shares, the maximum size
/// is 100000.
/// is 102400.
/// </param>
/// <param name='customHeaders'>
/// Headers that will be added to request.
Expand Down Expand Up @@ -740,9 +740,9 @@ internal FileSharesOperations(StorageManagementClient client)
throw new ValidationException(ValidationRules.MinLength, "Client.SubscriptionId", 1);
}
}
if (shareQuota > 100000)
if (shareQuota > 102400)
{
throw new ValidationException(ValidationRules.InclusiveMaximum, "shareQuota", 100000);
throw new ValidationException(ValidationRules.InclusiveMaximum, "shareQuota", 102400);
}
if (shareQuota < 1)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public static partial class FileSharesOperationsExtensions
/// <param name='shareQuota'>
/// The maximum size of the share, in gigabytes. Must be greater than 0, and
/// less than or equal to 5TB (5120). For Large File Shares, the maximum size
/// is 100000.
/// is 102400.
/// </param>
public static FileShare Create(this IFileSharesOperations operations, string resourceGroupName, string accountName, string shareName, IDictionary<string, string> metadata = default(IDictionary<string, string>), int? shareQuota = default(int?))
{
Expand Down Expand Up @@ -150,7 +150,7 @@ public static partial class FileSharesOperationsExtensions
/// <param name='shareQuota'>
/// The maximum size of the share, in gigabytes. Must be greater than 0, and
/// less than or equal to 5TB (5120). For Large File Shares, the maximum size
/// is 100000.
/// is 102400.
/// </param>
/// <param name='cancellationToken'>
/// The cancellation token.
Expand Down Expand Up @@ -192,7 +192,7 @@ public static partial class FileSharesOperationsExtensions
/// <param name='shareQuota'>
/// The maximum size of the share, in gigabytes. Must be greater than 0, and
/// less than or equal to 5TB (5120). For Large File Shares, the maximum size
/// is 100000.
/// is 102400.
/// </param>
public static FileShare Update(this IFileSharesOperations operations, string resourceGroupName, string accountName, string shareName, IDictionary<string, string> metadata = default(IDictionary<string, string>), int? shareQuota = default(int?))
{
Expand Down Expand Up @@ -228,7 +228,7 @@ public static partial class FileSharesOperationsExtensions
/// <param name='shareQuota'>
/// The maximum size of the share, in gigabytes. Must be greater than 0, and
/// less than or equal to 5TB (5120). For Large File Shares, the maximum size
/// is 100000.
/// is 102400.
/// </param>
/// <param name='cancellationToken'>
/// The cancellation token.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public partial interface IFileSharesOperations
/// <param name='shareQuota'>
/// The maximum size of the share, in gigabytes. Must be greater than
/// 0, and less than or equal to 5TB (5120). For Large File Shares, the
/// maximum size is 100000.
/// maximum size is 102400.
/// </param>
/// <param name='customHeaders'>
/// The headers that will be added to request.
Expand Down Expand Up @@ -132,7 +132,7 @@ public partial interface IFileSharesOperations
/// <param name='shareQuota'>
/// The maximum size of the share, in gigabytes. Must be greater than
/// 0, and less than or equal to 5TB (5120). For Large File Shares, the
/// maximum size is 100000.
/// maximum size is 102400.
/// </param>
/// <param name='customHeaders'>
/// The headers that will be added to request.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public FileShare()
/// share as metadata.</param>
/// <param name="shareQuota">The maximum size of the share, in
/// gigabytes. Must be greater than 0, and less than or equal to 5TB
/// (5120). For Large File Shares, the maximum size is 100000.</param>
/// (5120). For Large File Shares, the maximum size is 102400.</param>
public FileShare(string id = default(string), string name = default(string), string type = default(string), string etag = default(string), System.DateTime? lastModifiedTime = default(System.DateTime?), IDictionary<string, string> metadata = default(IDictionary<string, string>), int? shareQuota = default(int?))
: base(id, name, type, etag)
{
Expand Down Expand Up @@ -79,7 +79,7 @@ public FileShare()
/// <summary>
/// Gets or sets the maximum size of the share, in gigabytes. Must be
/// greater than 0, and less than or equal to 5TB (5120). For Large
/// File Shares, the maximum size is 100000.
/// File Shares, the maximum size is 102400.
/// </summary>
[JsonProperty(PropertyName = "properties.shareQuota")]
public int? ShareQuota { get; set; }
Expand All @@ -92,9 +92,9 @@ public FileShare()
/// </exception>
public virtual void Validate()
{
if (ShareQuota > 100000)
if (ShareQuota > 102400)
{
throw new ValidationException(ValidationRules.InclusiveMaximum, "ShareQuota", 100000);
throw new ValidationException(ValidationRules.InclusiveMaximum, "ShareQuota", 102400);
}
if (ShareQuota < 1)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public FileShareItem()
/// share as metadata.</param>
/// <param name="shareQuota">The maximum size of the share, in
/// gigabytes. Must be greater than 0, and less than or equal to 5TB
/// (5120). For Large File Shares, the maximum size is 100000.</param>
/// (5120). For Large File Shares, the maximum size is 102400.</param>
public FileShareItem(string id = default(string), string name = default(string), string type = default(string), string etag = default(string), System.DateTime? lastModifiedTime = default(System.DateTime?), IDictionary<string, string> metadata = default(IDictionary<string, string>), int? shareQuota = default(int?))
: base(id, name, type, etag)
{
Expand Down Expand Up @@ -78,7 +78,7 @@ public FileShareItem()
/// <summary>
/// Gets or sets the maximum size of the share, in gigabytes. Must be
/// greater than 0, and less than or equal to 5TB (5120). For Large
/// File Shares, the maximum size is 100000.
/// File Shares, the maximum size is 102400.
/// </summary>
[JsonProperty(PropertyName = "properties.shareQuota")]
public int? ShareQuota { get; set; }
Expand All @@ -91,9 +91,9 @@ public FileShareItem()
/// </exception>
public virtual void Validate()
{
if (ShareQuota > 100000)
if (ShareQuota > 102400)
{
throw new ValidationException(ValidationRules.InclusiveMaximum, "ShareQuota", 100000);
throw new ValidationException(ValidationRules.InclusiveMaximum, "ShareQuota", 102400);
}
if (ShareQuota < 1)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public static IEnumerable<Tuple<string, string, string>> ApiInfo_StorageManageme
public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/storage/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp.output-folder=C:\\code\\srpsdk\\sdk\\storage\\Microsoft.Azure.Management.Storage\\src\\Generated";
public static readonly String GithubForkName = "Azure";
public static readonly String GithubBranchName = "master";
public static readonly String GithubCommidId = "ef5bff591188a232471a8f81d7bc02c7c9f7d68d";
public static readonly String GithubCommidId = "0cf70260108cb40bc68d408674c187ed065f8c64";
public static readonly String CodeGenerationErrors = "";
public static readonly String GithubRepoName = "azure-rest-api-specs";
// END: Code Generation Metadata Section
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<PackageId>Microsoft.Azure.Management.Storage</PackageId>
<Description>Microsoft Azure Management Storage Library</Description>
<AssemblyName>Microsoft.Azure.Management.Storage</AssemblyName>
<Version>14.1.0</Version>
<Version>14.2.0</Version>
<PackageTags>Microsoft Azure Storage management;Storage;Storage management;</PackageTags>
<PackageReleaseNotes>See https://aka.ms/asdotnetsdkchangelog for release notes.</PackageReleaseNotes>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[assembly: AssemblyDescription("Provides Microsoft Azure Storage management functions for managing the Microsoft Azure Storage service.")]

[assembly: AssemblyVersion("14.0.0.0")]
[assembly: AssemblyFileVersion("14.1.0.0")]
[assembly: AssemblyFileVersion("14.2.0.0")]

[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
Expand Down