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
5 changes: 3 additions & 2 deletions src/SDKs/Cdn/Management.Cdn/Generated/Models/Sku.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public Sku()
/// </summary>
/// <param name="name">Name of the pricing tier. Possible values
/// include: 'Standard_Verizon', 'Premium_Verizon', 'Custom_Verizon',
/// 'Standard_Akamai', 'Standard_ChinaCdn',
/// 'Standard_Akamai', 'Standard_ChinaCdn', 'Premium_ChinaCdn',
/// 'Standard_Microsoft'</param>
public Sku(string name = default(string))
{
Expand All @@ -48,7 +48,8 @@ public Sku()
/// <summary>
/// Gets or sets name of the pricing tier. Possible values include:
/// 'Standard_Verizon', 'Premium_Verizon', 'Custom_Verizon',
/// 'Standard_Akamai', 'Standard_ChinaCdn', 'Standard_Microsoft'
/// 'Standard_Akamai', 'Standard_ChinaCdn', 'Premium_ChinaCdn',
/// 'Standard_Microsoft'
/// </summary>
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Expand Down
1 change: 1 addition & 0 deletions src/SDKs/Cdn/Management.Cdn/Generated/Models/SkuName.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ public static class SkuName
public const string CustomVerizon = "Custom_Verizon";
public const string StandardAkamai = "Standard_Akamai";
public const string StandardChinaCdn = "Standard_ChinaCdn";
public const string PremiumChinaCdn = "Premium_ChinaCdn";
public const string StandardMicrosoft = "Standard_Microsoft";
}
}