Skip to main content

vw_vnet_peerings

Creates, updates, deletes, gets or lists a vw_vnet_peerings resource.

Overview

Namevw_vnet_peerings
TypeView
Idazure_isv.databricks.vw_vnet_peerings

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

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';