vw_edge_gateway_pools
Creates, updates, deletes, gets or lists a vw_edge_gateway_pools
resource.
Overview
Name | vw_edge_gateway_pools |
Type | View |
Id | azure_stack.fabric_admin.vw_edge_gateway_pools |
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, '$.gatewayType') as "gateway_type",
JSON_EXTRACT(properties, '$.numberOfGateways') as "number_of_gateways",
JSON_EXTRACT(properties, '$.redundantGatewayCount') as "redundant_gateway_count",
JSON_EXTRACT(properties, '$.gatewayCapacityKiloBitsPerSecond') as "gateway_capacity_kilo_bits_per_second",
JSON_EXTRACT(properties, '$.publicIpAddress') as "public_ip_address",
JSON_EXTRACT(properties, '$.greVipSubnet') as "gre_vip_subnet",
JSON_EXTRACT(properties, '$.edgeGateways') as "edge_gateways",
subscriptionId,
resourceGroupName,
location,
edgeGatewayPool
FROM azure_stack.fabric_admin.edge_gateway_pools
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND location = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.gatewayType') as "gateway_type",
json_extract_path_text(properties, '$.numberOfGateways') as "number_of_gateways",
json_extract_path_text(properties, '$.redundantGatewayCount') as "redundant_gateway_count",
json_extract_path_text(properties, '$.gatewayCapacityKiloBitsPerSecond') as "gateway_capacity_kilo_bits_per_second",
json_extract_path_text(properties, '$.publicIpAddress') as "public_ip_address",
json_extract_path_text(properties, '$.greVipSubnet') as "gre_vip_subnet",
json_extract_path_text(properties, '$.edgeGateways') as "edge_gateways",
subscriptionId,
resourceGroupName,
location,
edgeGatewayPool
FROM azure_stack.fabric_admin.edge_gateway_pools
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND location = 'replace-me';