Skip to content

Commit 6fe39fd

Browse files
committed
Merge pull request #848 from jamestao/dev
Change type of StorageMB to int
2 parents 261c997 + 3f69638 commit 6fe39fd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Cmdlet/NewAzureSqlElasticPool.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public class NewAzureSqlElasticPool : AzureSqlElasticPoolCmdletBase
6060
[Parameter(Mandatory = false,
6161
HelpMessage = "The storage limit for the Sql Azure Elastic Pool in MB.")]
6262
[ValidateNotNullOrEmpty]
63-
public long StorageMB { get; set; }
63+
public int StorageMB { get; set; }
6464

6565
/// <summary>
6666
/// Gets or sets the minimum DTU all Sql Azure Databases are guaranteed.

src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Cmdlet/SetAzureSqlElasticPool.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public class SetAzureSqlElasticPool : AzureSqlElasticPoolCmdletBase
5959
[Parameter(Mandatory = false,
6060
HelpMessage = "The storage limit for the Sql Azure Elastic Pool in MB.")]
6161
[ValidateNotNullOrEmpty]
62-
public long StorageMB { get; set; }
62+
public int StorageMB { get; set; }
6363

6464
/// <summary>
6565
/// Gets or sets the minimum DTU all Sql Azure Databases are guaranteed.

0 commit comments

Comments
 (0)