Skip to main content

servers_skus_for_new

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

Overview

Nameservers_skus_for_new
TypeResource
Idazure.analysis_services.servers_skus_for_new

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringName of the SKU level.
capacityinteger (int32)The number of instances in the read only query pool.
tierstringThe name of the Azure pricing tier to which the SKU applies.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionIdLists 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.

NameDatatypeDescription
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 Analysis Services resource provider.

SELECT
name,
capacity,
tier
FROM azure.analysis_services.servers_skus_for_new
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;