vw_ip_firewall_rules
Creates, updates, deletes, gets or lists a vw_ip_firewall_rules
resource.
Overview
Name | vw_ip_firewall_rules |
Type | View |
Id | azure.synapse.vw_ip_firewall_rules |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.endIpAddress') as "end_ip_address",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.startIpAddress') as "start_ip_address",
subscriptionId,
resourceGroupName,
workspaceName,
ruleName
FROM azure.synapse.ip_firewall_rules
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.endIpAddress') as "end_ip_address",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.startIpAddress') as "start_ip_address",
subscriptionId,
resourceGroupName,
workspaceName,
ruleName
FROM azure.synapse.ip_firewall_rules
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';