vw_ddos_protection_plans
Creates, updates, deletes, gets or lists a vw_ddos_protection_plans
resource.
Overview
Name | vw_ddos_protection_plans |
Type | View |
Id | azure.network.vw_ddos_protection_plans |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
etag as etag,
JSON_EXTRACT(properties, '$.resourceGuid') as "resource_guid",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.publicIPAddresses') as "public_ip_addresses",
JSON_EXTRACT(properties, '$.virtualNetworks') as "virtual_networks",
subscriptionId,
resourceGroupName,
ddosProtectionPlanName
FROM azure.network.ddos_protection_plans
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
etag as etag,
json_extract_path_text(properties, '$.resourceGuid') as "resource_guid",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.publicIPAddresses') as "public_ip_addresses",
json_extract_path_text(properties, '$.virtualNetworks') as "virtual_networks",
subscriptionId,
resourceGroupName,
ddosProtectionPlanName
FROM azure.network.ddos_protection_plans
WHERE subscriptionId = 'replace-me';