What are the sku names for capacity reservation options? They are not listed here.
⚠Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.
@slavizh Thanks for the feedback! We are currently investigating and will update you shortly.
Thanks! I already found what is needed to be set. Probably will blog about it but it is good if it is in the official docs as well.
@slavizh : Glad to hear you were able to resolve the issue. We will update the document accordingly.
As a reference to others who are searching for SKUs related to capacity reservation , I am adding sample template in this issue .
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"workspaces_casw_name": {
"defaultValue": "casw",
"type": "String"
}
},
"variables": {},
"resources": [
{
"type": "microsoft.operationalinsights/workspaces",
"apiVersion": "2015-11-01-preview",
"name": "[parameters('workspaces_casw_name')]",
"location": "australiacentral",
"tags": {
"Reason": "Repro",
"CreatedDate": "12/3/2019 6:18:04 AM",
},
"properties": {
"sku": {
"name": "capacityreservation",
"capacityReservationLevel": 100
},
"retentionInDays": 30
}
}
]
}
You can change capacityreservationlevel as per requirement.
@MGoedtel Can you please update the document accordingly
I've updated the article and it will be released at the next publishing cycle. I also confirmed with engineering all the details related to the behavior and use of this new SKU, and included those details in the article (along with updated template examples that I tested earlier). #please-close.