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

[AutoPR cdn/resource-manager] add premium_chinaCdn to CDN sku #5160

Merged
merged 2 commits into from
May 9, 2019
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
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ class SkuName(str, Enum):
standard_akamai = "Standard_Akamai"
standard_china_cdn = "Standard_ChinaCdn"
standard_microsoft = "Standard_Microsoft"
premium_china_cdn = "Premium_ChinaCdn"


class ProfileResourceState(str, Enum):
Expand Down
3 changes: 2 additions & 1 deletion azure-mgmt-cdn/azure/mgmt/cdn/models/sku.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ class Sku(Model):

:param name: Name of the pricing tier. Possible values include:
'Standard_Verizon', 'Premium_Verizon', 'Custom_Verizon',
'Standard_Akamai', 'Standard_ChinaCdn', 'Standard_Microsoft'
'Standard_Akamai', 'Standard_ChinaCdn', 'Standard_Microsoft',
'Premium_ChinaCdn'
:type name: str or ~azure.mgmt.cdn.models.SkuName
"""

Expand Down
3 changes: 2 additions & 1 deletion azure-mgmt-cdn/azure/mgmt/cdn/models/sku_py3.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ class Sku(Model):

:param name: Name of the pricing tier. Possible values include:
'Standard_Verizon', 'Premium_Verizon', 'Custom_Verizon',
'Standard_Akamai', 'Standard_ChinaCdn', 'Standard_Microsoft'
'Standard_Akamai', 'Standard_ChinaCdn', 'Standard_Microsoft',
'Premium_ChinaCdn'
:type name: str or ~azure.mgmt.cdn.models.SkuName
"""

Expand Down