vw_vnet_peerings
Creates, updates, deletes, gets or lists a vw_vnet_peerings
resource.
Overview
Name | vw_vnet_peerings |
Type | View |
Id | azure_isv.databricks.vw_vnet_peerings |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
JSON_EXTRACT(properties, '$.allowVirtualNetworkAccess') as "allow_virtual_network_access",
JSON_EXTRACT(properties, '$.allowForwardedTraffic') as "allow_forwarded_traffic",
JSON_EXTRACT(properties, '$.allowGatewayTransit') as "allow_gateway_transit",
JSON_EXTRACT(properties, '$.useRemoteGateways') as "use_remote_gateways",
JSON_EXTRACT(properties, '$.databricksVirtualNetwork') as "databricks_virtual_network",
JSON_EXTRACT(properties, '$.databricksAddressSpace') as "databricks_address_space",
JSON_EXTRACT(properties, '$.remoteVirtualNetwork') as "remote_virtual_network",
JSON_EXTRACT(properties, '$.remoteAddressSpace') as "remote_address_space",
JSON_EXTRACT(properties, '$.peeringState') as "peering_state",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
workspaceName,
peeringName
FROM azure_isv.databricks.vnet_peerings
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.allowVirtualNetworkAccess') as "allow_virtual_network_access",
json_extract_path_text(properties, '$.allowForwardedTraffic') as "allow_forwarded_traffic",
json_extract_path_text(properties, '$.allowGatewayTransit') as "allow_gateway_transit",
json_extract_path_text(properties, '$.useRemoteGateways') as "use_remote_gateways",
json_extract_path_text(properties, '$.databricksVirtualNetwork') as "databricks_virtual_network",
json_extract_path_text(properties, '$.databricksAddressSpace') as "databricks_address_space",
json_extract_path_text(properties, '$.remoteVirtualNetwork') as "remote_virtual_network",
json_extract_path_text(properties, '$.remoteAddressSpace') as "remote_address_space",
json_extract_path_text(properties, '$.peeringState') as "peering_state",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
workspaceName,
peeringName
FROM azure_isv.databricks.vnet_peerings
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';