Skip to main content

servers_skus_for_existing

Creates, updates, deletes, gets or lists a servers_skus_for_existing resource.

Overview

Nameservers_skus_for_existing
TypeResource
Idazure.analysis_services.servers_skus_for_existing

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
resourceTypestringThe resource type.
skuobjectRepresents the SKU name and Azure pricing tier for Analysis Services resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, serverName, subscriptionIdLists 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.

NameDatatypeDescription
resourceGroupNamestringThe 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.
serverNamestringThe name of the Analysis Services server. It must be at least 3 characters in length, and no more than 63.
subscriptionIdstringA unique identifier for a Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

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
;