vw_servers_details
Creates, updates, deletes, gets or lists a vw_servers_details
resource.
Overview
Name | vw_servers_details |
Type | View |
Id | azure.analysis_services.vw_servers_details |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
type as type,
sku as sku,
tags as tags,
JSON_EXTRACT(properties, '$.state') as "state",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.serverFullName') as "server_full_name",
JSON_EXTRACT(properties, '$.sku') as "sku",
JSON_EXTRACT(properties, '$.asAdministrators') as "as_administrators",
JSON_EXTRACT(properties, '$.backupBlobContainerUri') as "backup_blob_container_uri",
JSON_EXTRACT(properties, '$.gatewayDetails') as "gateway_details",
JSON_EXTRACT(properties, '$.ipV4FirewallSettings') as "ip_v4_firewall_settings",
JSON_EXTRACT(properties, '$.querypoolConnectionMode') as "querypool_connection_mode",
JSON_EXTRACT(properties, '$.managedMode') as "managed_mode",
JSON_EXTRACT(properties, '$.serverMonitorMode') as "server_monitor_mode",
subscriptionId,
resourceGroupName,
serverName
FROM azure.analysis_services.servers_details
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serverName = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
sku as sku,
tags as tags,
json_extract_path_text(properties, '$.state') as "state",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.serverFullName') as "server_full_name",
json_extract_path_text(properties, '$.sku') as "sku",
json_extract_path_text(properties, '$.asAdministrators') as "as_administrators",
json_extract_path_text(properties, '$.backupBlobContainerUri') as "backup_blob_container_uri",
json_extract_path_text(properties, '$.gatewayDetails') as "gateway_details",
json_extract_path_text(properties, '$.ipV4FirewallSettings') as "ip_v4_firewall_settings",
json_extract_path_text(properties, '$.querypoolConnectionMode') as "querypool_connection_mode",
json_extract_path_text(properties, '$.managedMode') as "managed_mode",
json_extract_path_text(properties, '$.serverMonitorMode') as "server_monitor_mode",
subscriptionId,
resourceGroupName,
serverName
FROM azure.analysis_services.servers_details
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serverName = 'replace-me';