vw_network_packet_brokers
Creates, updates, deletes, gets or lists a vw_network_packet_brokers
resource.
Overview
Name | vw_network_packet_brokers |
Type | View |
Id | azure.managed_network_fabric.vw_network_packet_brokers |
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, '$.networkFabricId') as "network_fabric_id",
JSON_EXTRACT(properties, '$.networkDeviceIds') as "network_device_ids",
JSON_EXTRACT(properties, '$.sourceInterfaceIds') as "source_interface_ids",
JSON_EXTRACT(properties, '$.networkTapIds') as "network_tap_ids",
JSON_EXTRACT(properties, '$.neighborGroupIds') as "neighbor_group_ids",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
networkPacketBrokerName
FROM azure.managed_network_fabric.network_packet_brokers
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.networkFabricId') as "network_fabric_id",
json_extract_path_text(properties, '$.networkDeviceIds') as "network_device_ids",
json_extract_path_text(properties, '$.sourceInterfaceIds') as "source_interface_ids",
json_extract_path_text(properties, '$.networkTapIds') as "network_tap_ids",
json_extract_path_text(properties, '$.neighborGroupIds') as "neighbor_group_ids",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
networkPacketBrokerName
FROM azure.managed_network_fabric.network_packet_brokers
WHERE subscriptionId = 'replace-me';