vw_network_connections
Creates, updates, deletes, gets or lists a vw_network_connections
resource.
Overview
Name | vw_network_connections |
Type | View |
Id | azure.dev_center.vw_network_connections |
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, '$.subnetId') as "subnet_id",
JSON_EXTRACT(properties, '$.domainName') as "domain_name",
JSON_EXTRACT(properties, '$.organizationUnit') as "organization_unit",
JSON_EXTRACT(properties, '$.domainUsername') as "domain_username",
JSON_EXTRACT(properties, '$.domainPassword') as "domain_password",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.healthCheckStatus') as "health_check_status",
JSON_EXTRACT(properties, '$.networkingResourceGroupName') as "networking_resource_group_name",
JSON_EXTRACT(properties, '$.domainJoinType') as "domain_join_type",
subscriptionId,
resourceGroupName,
networkConnectionName
FROM azure.dev_center.network_connections
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.subnetId') as "subnet_id",
json_extract_path_text(properties, '$.domainName') as "domain_name",
json_extract_path_text(properties, '$.organizationUnit') as "organization_unit",
json_extract_path_text(properties, '$.domainUsername') as "domain_username",
json_extract_path_text(properties, '$.domainPassword') as "domain_password",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.healthCheckStatus') as "health_check_status",
json_extract_path_text(properties, '$.networkingResourceGroupName') as "networking_resource_group_name",
json_extract_path_text(properties, '$.domainJoinType') as "domain_join_type",
subscriptionId,
resourceGroupName,
networkConnectionName
FROM azure.dev_center.network_connections
WHERE subscriptionId = 'replace-me';