Skip to main content

servers_details

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

Overview

Nameservers_details
TypeResource
Idazure.analysis_services.servers_details

Fields

The following fields are returned by SELECT queries:

OK. The operation was successful.

NameDatatypeDescription
idstringAn identifier that represents the Analysis Services resource.
namestringThe name of the Analysis Services resource.
locationstringLocation of the Analysis Services resource.
propertiesobjectProperties of the provision operation request.
skuobjectThe SKU of the Analysis Services resource.
tagsobjectKey-value pairs of additional resource provisioning properties.
typestringThe type of the Analysis Services resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, serverName, subscriptionIdGets details about the specified Analysis Services server.

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 a minimum of 3 characters, and a maximum of 63.
subscriptionIdstringA unique identifier for a Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

Gets details about the specified Analysis Services server.

SELECT
id,
name,
location,
properties,
sku,
tags,
type
FROM azure.analysis_services.servers_details
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND serverName = '{{ serverName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;