vw_sap_application_server_instances
Creates, updates, deletes, gets or lists a vw_sap_application_server_instances
resource.
Overview
Name | vw_sap_application_server_instances |
Type | View |
Id | azure_isv.sap_workloads.vw_sap_application_server_instances |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
JSON_EXTRACT(properties, '$.instanceNo') as "instance_no",
JSON_EXTRACT(properties, '$.subnet') as "subnet",
JSON_EXTRACT(properties, '$.hostname') as "hostname",
JSON_EXTRACT(properties, '$.kernelVersion') as "kernel_version",
JSON_EXTRACT(properties, '$.kernelPatch') as "kernel_patch",
JSON_EXTRACT(properties, '$.ipAddress') as "ip_address",
JSON_EXTRACT(properties, '$.gatewayPort') as "gateway_port",
JSON_EXTRACT(properties, '$.icmHttpPort') as "icm_http_port",
JSON_EXTRACT(properties, '$.icmHttpsPort') as "icm_https_port",
JSON_EXTRACT(properties, '$.loadBalancerDetails') as "load_balancer_details",
JSON_EXTRACT(properties, '$.vmDetails') as "vm_details",
JSON_EXTRACT(properties, '$.status') as "status",
JSON_EXTRACT(properties, '$.health') as "health",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.errors') as "errors",
subscriptionId,
resourceGroupName,
sapVirtualInstanceName,
applicationInstanceName
FROM azure_isv.sap_workloads.sap_application_server_instances
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND sapVirtualInstanceName = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.instanceNo') as "instance_no",
json_extract_path_text(properties, '$.subnet') as "subnet",
json_extract_path_text(properties, '$.hostname') as "hostname",
json_extract_path_text(properties, '$.kernelVersion') as "kernel_version",
json_extract_path_text(properties, '$.kernelPatch') as "kernel_patch",
json_extract_path_text(properties, '$.ipAddress') as "ip_address",
json_extract_path_text(properties, '$.gatewayPort') as "gateway_port",
json_extract_path_text(properties, '$.icmHttpPort') as "icm_http_port",
json_extract_path_text(properties, '$.icmHttpsPort') as "icm_https_port",
json_extract_path_text(properties, '$.loadBalancerDetails') as "load_balancer_details",
json_extract_path_text(properties, '$.vmDetails') as "vm_details",
json_extract_path_text(properties, '$.status') as "status",
json_extract_path_text(properties, '$.health') as "health",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.errors') as "errors",
subscriptionId,
resourceGroupName,
sapVirtualInstanceName,
applicationInstanceName
FROM azure_isv.sap_workloads.sap_application_server_instances
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND sapVirtualInstanceName = 'replace-me';