diff --git a/profiles/latest/cdn/mgmt/cdn/models.go b/profiles/latest/cdn/mgmt/cdn/models.go index bb997554ce87..99824040263f 100644 --- a/profiles/latest/cdn/mgmt/cdn/models.go +++ b/profiles/latest/cdn/mgmt/cdn/models.go @@ -178,6 +178,7 @@ type SkuName = original.SkuName const ( CustomVerizon SkuName = original.CustomVerizon + PremiumChinaCdn SkuName = original.PremiumChinaCdn PremiumVerizon SkuName = original.PremiumVerizon StandardAkamai SkuName = original.StandardAkamai StandardChinaCdn SkuName = original.StandardChinaCdn diff --git a/profiles/preview/cdn/mgmt/cdn/models.go b/profiles/preview/cdn/mgmt/cdn/models.go index df4093b2bc24..7c19d85c5f3f 100644 --- a/profiles/preview/cdn/mgmt/cdn/models.go +++ b/profiles/preview/cdn/mgmt/cdn/models.go @@ -178,6 +178,7 @@ type SkuName = original.SkuName const ( CustomVerizon SkuName = original.CustomVerizon + PremiumChinaCdn SkuName = original.PremiumChinaCdn PremiumVerizon SkuName = original.PremiumVerizon StandardAkamai SkuName = original.StandardAkamai StandardChinaCdn SkuName = original.StandardChinaCdn diff --git a/services/cdn/mgmt/2017-10-12/cdn/models.go b/services/cdn/mgmt/2017-10-12/cdn/models.go index 92b5ef78bab2..8db184a81214 100644 --- a/services/cdn/mgmt/2017-10-12/cdn/models.go +++ b/services/cdn/mgmt/2017-10-12/cdn/models.go @@ -343,6 +343,8 @@ type SkuName string const ( // CustomVerizon ... CustomVerizon SkuName = "Custom_Verizon" + // PremiumChinaCdn ... + PremiumChinaCdn SkuName = "Premium_ChinaCdn" // PremiumVerizon ... PremiumVerizon SkuName = "Premium_Verizon" // StandardAkamai ... @@ -357,7 +359,7 @@ const ( // PossibleSkuNameValues returns an array of possible values for the SkuName const type. func PossibleSkuNameValues() []SkuName { - return []SkuName{CustomVerizon, PremiumVerizon, StandardAkamai, StandardChinaCdn, StandardMicrosoft, StandardVerizon} + return []SkuName{CustomVerizon, PremiumChinaCdn, PremiumVerizon, StandardAkamai, StandardChinaCdn, StandardMicrosoft, StandardVerizon} } // CacheExpirationActionParameters defines the parameters for the cache expiration action. @@ -3206,7 +3208,7 @@ func NewResourceUsageListResultPage(getNextPage func(context.Context, ResourceUs // Sku the pricing tier (defines a CDN provider, feature list and rate) of the CDN profile. type Sku struct { - // Name - Name of the pricing tier. Possible values include: 'StandardVerizon', 'PremiumVerizon', 'CustomVerizon', 'StandardAkamai', 'StandardChinaCdn', 'StandardMicrosoft' + // Name - Name of the pricing tier. Possible values include: 'StandardVerizon', 'PremiumVerizon', 'CustomVerizon', 'StandardAkamai', 'StandardChinaCdn', 'PremiumChinaCdn', 'StandardMicrosoft' Name SkuName `json:"name,omitempty"` }