vw_network_tap_rules
Creates, updates, deletes, gets or lists a vw_network_tap_rules
resource.
Overview
Name | vw_network_tap_rules |
Type | View |
Id | azure.managed_network_fabric.vw_network_tap_rules |
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, '$.annotation') as "annotation",
JSON_EXTRACT(properties, '$.configurationType') as "configuration_type",
JSON_EXTRACT(properties, '$.tapRulesUrl') as "tap_rules_url",
JSON_EXTRACT(properties, '$.matchConfigurations') as "match_configurations",
JSON_EXTRACT(properties, '$.dynamicMatchConfigurations') as "dynamic_match_configurations",
JSON_EXTRACT(properties, '$.networkTapId') as "network_tap_id",
JSON_EXTRACT(properties, '$.pollingIntervalInSeconds') as "polling_interval_in_seconds",
JSON_EXTRACT(properties, '$.lastSyncedTime') as "last_synced_time",
JSON_EXTRACT(properties, '$.configurationState') as "configuration_state",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.administrativeState') as "administrative_state",
subscriptionId,
resourceGroupName,
networkTapRuleName
FROM azure.managed_network_fabric.network_tap_rules
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.annotation') as "annotation",
json_extract_path_text(properties, '$.configurationType') as "configuration_type",
json_extract_path_text(properties, '$.tapRulesUrl') as "tap_rules_url",
json_extract_path_text(properties, '$.matchConfigurations') as "match_configurations",
json_extract_path_text(properties, '$.dynamicMatchConfigurations') as "dynamic_match_configurations",
json_extract_path_text(properties, '$.networkTapId') as "network_tap_id",
json_extract_path_text(properties, '$.pollingIntervalInSeconds') as "polling_interval_in_seconds",
json_extract_path_text(properties, '$.lastSyncedTime') as "last_synced_time",
json_extract_path_text(properties, '$.configurationState') as "configuration_state",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.administrativeState') as "administrative_state",
subscriptionId,
resourceGroupName,
networkTapRuleName
FROM azure.managed_network_fabric.network_tap_rules
WHERE subscriptionId = 'replace-me';