Mohamed Meeran
Mohamed Meeran

Reputation: 47

what are the values that can be passed for sku.family and sku.capacity property in azure automation account

Here is the link for the resources of template format for the creation of azure automation account. what is sku , sku.family and sku.capacity for automation account?

https://learn.microsoft.com/en-us/azure/templates/microsoft.automation/automationaccounts/jobschedules

Normally we can create the azure automation without sku.family and sku.capacity properties.But what are the possible values that can be passed to these resources for creation of arm template.

What could be the sku.family and its corresponding sku.capacity that can be passed????

What is the use of sku.family and sku.capacity in general for azure Resources ???

Upvotes: 0

Views: 2041

Answers (2)

Femi Sulu
Femi Sulu

Reputation: 303

In Azure Automation, SKU-Family and SKU-Capacity are unrequired and are more or less placeholders - "null" accepted. SKu-name is the only required property of type "SKuNameEnum" with 2 possible values: "Basic" & "Free" Here are 2 sample responses showing all 3 SKU object properties and you will notice family & capacity are both "null" enter image description here

For your reference, there's a public facing API Browser page (in preview) that enumerates all supported REST APIs including API properties, description, usage and response samples. Simply enter the Azure service you would like to explore in the dropdown and drill through the listed APIs. In most cases, It includes a "Tryit" workflow to test the API call.

enter image description here Hope this helps.

Upvotes: 0

Nancy Xiong
Nancy Xiong

Reputation: 28224

As you mentioned that link, we can find Sku object as pic.

enter image description here

Also we can get information about an automation account ,For a Free Sku, there is a response as below:

"properties":{
    "sku":{
        "name":"Free",
        "family":null,
        "capacity":null
    },

Moreover, you can get more details from this relevant schema for Automation

https://raw.githubusercontent.com/Azure/azure-resource-manager-schemas/master/schemas/2015-10-31/Microsoft.Automation.json

Hope this helps.

Upvotes: 0

Related Questions