Skip to content

Commit

Permalink
update to development
Browse files Browse the repository at this point in the history
  • Loading branch information
athipp committed Oct 21, 2016
1 parent 282bbd0 commit cc4565d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
Expand Up @@ -27,8 +27,8 @@ public partial class ResourceSku
/// provisioned. Possible values include: 'S1', 'S2', 'S4',
/// 'D1'</param>
/// <param name="tier">Name of the tier to which the Sku applies.
/// Possible values include: 'Developer', 'Standard'</param>
public ResourceSku(string name, string tier)
/// Possible values include: 'Development', 'Standard'</param>
public ResourceSku(string name, string tier = default(string))
{
Name = name;
Tier = tier;
Expand All @@ -43,7 +43,7 @@ public ResourceSku(string name, string tier)

/// <summary>
/// Gets or sets name of the tier to which the Sku applies. Possible
/// values include: 'Developer', 'Standard'
/// values include: 'Development', 'Standard'
/// </summary>
[Newtonsoft.Json.JsonProperty(PropertyName = "tier")]
public string Tier { get; set; }
Expand All @@ -60,10 +60,6 @@ public virtual void Validate()
{
throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Name");
}
if (Tier == null)
{
throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Tier");
}
}
}
}
Expand Up @@ -14,7 +14,7 @@ namespace Microsoft.Azure.Management.Analysis.Models
/// </summary>
public static class SkuTier
{
public const string Developer = "Developer";
public const string Development = "Development";
public const string Standard = "Standard";
}
}

0 comments on commit cc4565d

Please sign in to comment.