vw_network_interfaces
Creates, updates, deletes, gets or lists a vw_network_interfaces
resource.
Overview
Name | vw_network_interfaces |
Type | View |
Id | azure.managed_network_fabric.vw_network_interfaces |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.annotation') as "annotation",
JSON_EXTRACT(properties, '$.physicalIdentifier') as "physical_identifier",
JSON_EXTRACT(properties, '$.connectedTo') as "connected_to",
JSON_EXTRACT(properties, '$.interfaceType') as "interface_type",
JSON_EXTRACT(properties, '$.ipv4Address') as "ipv4_address",
JSON_EXTRACT(properties, '$.ipv6Address') as "ipv6_address",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.administrativeState') as "administrative_state",
subscriptionId,
resourceGroupName,
networkDeviceName,
networkInterfaceName
FROM azure.managed_network_fabric.network_interfaces
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND networkDeviceName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.annotation') as "annotation",
json_extract_path_text(properties, '$.physicalIdentifier') as "physical_identifier",
json_extract_path_text(properties, '$.connectedTo') as "connected_to",
json_extract_path_text(properties, '$.interfaceType') as "interface_type",
json_extract_path_text(properties, '$.ipv4Address') as "ipv4_address",
json_extract_path_text(properties, '$.ipv6Address') as "ipv6_address",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.administrativeState') as "administrative_state",
subscriptionId,
resourceGroupName,
networkDeviceName,
networkInterfaceName
FROM azure.managed_network_fabric.network_interfaces
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND networkDeviceName = 'replace-me';