servers_details
Creates, updates, deletes, gets or lists a servers_details
resource.
Overview
Name | servers_details |
Type | Resource |
Id | azure.analysis_services.servers_details |
Fields
- vw_servers_details
- servers_details
Name | Datatype | Description |
---|---|---|
id | text | An identifier that represents the Analysis Services resource. |
name | text | The name of the Analysis Services resource. |
as_administrators | text | field from the properties object |
backup_blob_container_uri | text | field from the properties object |
gateway_details | text | field from the properties object |
ip_v4_firewall_settings | text | field from the properties object |
location | text | Location of the Analysis Services resource. |
managed_mode | text | field from the properties object |
provisioning_state | text | field from the properties object |
querypool_connection_mode | text | field from the properties object |
resourceGroupName | text | field from the properties object |
serverName | text | field from the properties object |
server_full_name | text | field from the properties object |
server_monitor_mode | text | field from the properties object |
sku | text | Represents the SKU name and Azure pricing tier for Analysis Services resource. |
state | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | Key-value pairs of additional resource provisioning properties. |
type | text | The type of the Analysis Services resource. |
Name | Datatype | Description |
---|---|---|
id | string | An identifier that represents the Analysis Services resource. |
name | string | The name of the Analysis Services resource. |
location | string | Location of the Analysis Services resource. |
properties | object | Properties of Analysis Services resource. |
sku | object | Represents the SKU name and Azure pricing tier for Analysis Services resource. |
tags | object | Key-value pairs of additional resource provisioning properties. |
type | string | The type of the Analysis Services resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, serverName, subscriptionId | Gets details about the specified Analysis Services server. |
SELECT
examples
Gets details about the specified Analysis Services server.
- vw_servers_details
- servers_details
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 }}';
SELECT
id,
name,
location,
properties,
sku,
tags,
type
FROM azure.analysis_services.servers_details
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND serverName = '{{ serverName }}'
AND subscriptionId = '{{ subscriptionId }}';