servers_skus_for_new
Creates, updates, deletes, gets or lists a servers_skus_for_new resource.
Overview
| Name | servers_skus_for_new |
| Type | Resource |
| Id | azure.analysis_services.servers_skus_for_new |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
name | string | Name of the SKU level. |
capacity | integer (int32) | The number of instances in the read only query pool. |
tier | string | The name of the Azure pricing tier to which the SKU applies. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId | Lists eligible SKUs for Analysis Services resource provider. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
subscriptionId | string | A unique identifier for a Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT examples
- list
Lists eligible SKUs for Analysis Services resource provider.
SELECT
name,
capacity,
tier
FROM azure.analysis_services.servers_skus_for_new
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;