Skip to content

Commit 0d1909d

Browse files
committed
Fix type of 'DatabaseMaxSizeBytes' parameter for New-AzureRmSqlDatabaseImport cmdlet
1 parent 8b34b12 commit 0d1909d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ResourceManager/Sql/Commands.Sql/ImportExport/Cmdlet/NewAzureSqlDatabaseImport.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public string ServiceObjectiveName
5757
/// Gets or sets the maximum size for the newly imported database
5858
/// </summary>
5959
[Parameter(Mandatory = true, HelpMessage = "The maximum size in bytes for the newly imported database")]
60-
public int DatabaseMaxSizeBytes
60+
public long DatabaseMaxSizeBytes
6161
{
6262
get; set;
6363
}

src/ResourceManager/Sql/Commands.Sql/ImportExport/Model/AzureSqlDatabaseImportModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public string ServiceObjectiveName
4040
/// <summary>
4141
/// Gets or sets the maximum size for the newly imported database
4242
/// </summary>
43-
public int DatabaseMaxSizeBytes
43+
public long DatabaseMaxSizeBytes
4444
{
4545
get; set;
4646
}

0 commit comments

Comments
 (0)