resource_skus
Creates, updates, deletes, gets or lists a resource_skus
resource.
Overview
Name | resource_skus |
Type | Resource |
Id | azure.cognitive_services.resource_skus |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The name of SKU. |
kind | string | The Kind of resources that are supported in this SKU. |
locations | array | The set of locations that the SKU is available. |
resourceType | string | The type of resource the SKU applies to. |
restrictions | array | The restrictions because of which SKU cannot be used. This is empty if there are no restrictions. |
tier | string | Specifies the tier of Cognitive Services account. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | subscriptionId | Gets the list of Microsoft.CognitiveServices SKUs available for your Subscription. |
SELECT
examples
Gets the list of Microsoft.CognitiveServices SKUs available for your Subscription.
SELECT
name,
kind,
locations,
resourceType,
restrictions,
tier
FROM azure.cognitive_services.resource_skus
WHERE subscriptionId = '{{ subscriptionId }}';