Skip to content
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

fix Management.Sql sdk issue for customization elastic pool model #4206

Merged
merged 1 commit into from
Apr 10, 2018
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ public partial class ElasticPool : TrackedResource
/// <summary>
/// Gets or sets the edition of the elastic pool. Possible values include: 'Basic', 'Standard', 'Premium'
/// </summary>
[JsonIgnore]
public string Edition
{
get
Expand All @@ -24,6 +25,7 @@ public string Edition
/// <summary>
/// Gets the total shared DTU for the database elastic pool.
/// </summary>
[JsonIgnore]
public int? Dtu
{
get
Expand All @@ -35,6 +37,7 @@ public int? Dtu
/// <summary>
/// Gets storage limit for the database elastic pool in MB.
/// </summary>
[JsonIgnore]
public int? StorageMB
{
get
Expand Down