servers_skus_for_existing
Creates, updates, deletes, gets or lists a servers_skus_for_existing resource.
Overview
| Name | servers_skus_for_existing |
| Type | Resource |
| Id | azure.analysis_services.servers_skus_for_existing |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
resourceType | string | The resource type. |
sku | object | Represents the SKU name and Azure pricing tier for Analysis Services resource. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | resourceGroupName, serverName, subscriptionId | Lists eligible SKUs for an Analysis Services resource. |
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 |
|---|---|---|
resourceGroupName | string | The name of the Azure Resource group of which a given Analysis Services server is part. This name must be at least 1 character in length, and no more than 90. |
serverName | string | The name of the Analysis Services server. It must be at least 3 characters in length, and no more than 63. |
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 an Analysis Services resource.
SELECT
resourceType,
sku
FROM azure.analysis_services.servers_skus_for_existing
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND serverName = '{{ serverName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;