vw_frontend_endpoints
Creates, updates, deletes, gets or lists a vw_frontend_endpoints
resource.
Overview
Name | vw_frontend_endpoints |
Type | View |
Id | azure.front_door.vw_frontend_endpoints |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
JSON_EXTRACT(properties, '$.hostName') as "host_name",
JSON_EXTRACT(properties, '$.sessionAffinityEnabledState') as "session_affinity_enabled_state",
JSON_EXTRACT(properties, '$.sessionAffinityTtlSeconds') as "session_affinity_ttl_seconds",
JSON_EXTRACT(properties, '$.webApplicationFirewallPolicyLink') as "web_application_firewall_policy_link",
JSON_EXTRACT(properties, '$.resourceState') as "resource_state",
JSON_EXTRACT(properties, '$.customHttpsProvisioningState') as "custom_https_provisioning_state",
JSON_EXTRACT(properties, '$.customHttpsProvisioningSubstate') as "custom_https_provisioning_substate",
JSON_EXTRACT(properties, '$.customHttpsConfiguration') as "custom_https_configuration",
subscriptionId,
resourceGroupName,
frontDoorName,
frontendEndpointName
FROM azure.front_door.frontend_endpoints
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND frontDoorName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.hostName') as "host_name",
json_extract_path_text(properties, '$.sessionAffinityEnabledState') as "session_affinity_enabled_state",
json_extract_path_text(properties, '$.sessionAffinityTtlSeconds') as "session_affinity_ttl_seconds",
json_extract_path_text(properties, '$.webApplicationFirewallPolicyLink') as "web_application_firewall_policy_link",
json_extract_path_text(properties, '$.resourceState') as "resource_state",
json_extract_path_text(properties, '$.customHttpsProvisioningState') as "custom_https_provisioning_state",
json_extract_path_text(properties, '$.customHttpsProvisioningSubstate') as "custom_https_provisioning_substate",
json_extract_path_text(properties, '$.customHttpsConfiguration') as "custom_https_configuration",
subscriptionId,
resourceGroupName,
frontDoorName,
frontendEndpointName
FROM azure.front_door.frontend_endpoints
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND frontDoorName = 'replace-me';