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

EventHub: Add Premium to EventHub SKU name and tier enums #14046

Merged
merged 1 commit into from
May 4, 2021
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 @@ -689,7 +689,8 @@
"description": "Name of this SKU.",
"enum": [
"Basic",
"Standard"
"Standard",
"Premium"
],
"x-ms-enum": {
"name": "SkuName",
Expand All @@ -701,7 +702,8 @@
"description": "The billing tier of this particular SKU.",
"enum": [
"Basic",
"Standard"
"Standard",
"Premium"
],
"x-ms-enum": {
"name": "SkuTier",
Expand All @@ -713,7 +715,7 @@
"maximum": 20,
"minimum": 0,
"type": "integer",
"description": "The Event Hubs throughput units, value should be 0 to 20 throughput units."
"description": "The Event Hubs throughput units for Basic or Standard tiers, where value should be 0 to 20 throughput units. The Event Hubs premium units for Premium tier, where value should be 0 to 10 premium units."
}
},
"required": [
Expand Down