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

NameDatatypeDescription
idtextAn identifier that represents the Analysis Services resource.
nametextThe name of the Analysis Services resource.
as_administratorstextfield from the properties object
backup_blob_container_uritextfield from the properties object
gateway_detailstextfield from the properties object
ip_v4_firewall_settingstextfield from the properties object
locationtextLocation of the Analysis Services resource.
managed_modetextfield from the properties object
provisioning_statetextfield from the properties object
querypool_connection_modetextfield from the properties object
resourceGroupNametextfield from the properties object
serverNametextfield from the properties object
server_full_nametextfield from the properties object
server_monitor_modetextfield from the properties object
skutextRepresents the SKU name and Azure pricing tier for Analysis Services resource.
statetextfield from the properties object
subscriptionIdtextfield from the properties object
tagstextKey-value pairs of additional resource provisioning properties.
typetextThe type of the Analysis Services resource.

Methods

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

SELECT examples

Gets details about the specified Analysis Services server.

SELECT
id,
name,
as_administrators,
backup_blob_container_uri,
gateway_details,
ip_v4_firewall_settings,
location,
managed_mode,
provisioning_state,
querypool_connection_mode,
resourceGroupName,
serverName,
server_full_name,
server_monitor_mode,
sku,
state,
subscriptionId,
tags,
type
FROM azure.analysis_services.vw_servers_details
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND serverName = '{{ serverName }}'
AND subscriptionId = '{{ subscriptionId }}';