vw_ip_pools
Creates, updates, deletes, gets or lists a vw_ip_pools
resource.
Overview
Name | vw_ip_pools |
Type | View |
Id | azure_stack.fabric_admin.vw_ip_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, '$.startIpAddress') as "start_ip_address",
JSON_EXTRACT(properties, '$.endIpAddress') as "end_ip_address",
JSON_EXTRACT(properties, '$.addressPrefix') as "address_prefix",
JSON_EXTRACT(properties, '$.numberOfIpAddresses') as "number_of_ip_addresses",
JSON_EXTRACT(properties, '$.numberOfAllocatedIpAddresses') as "number_of_allocated_ip_addresses",
JSON_EXTRACT(properties, '$.numberOfIpAddressesInTransition') as "number_of_ip_addresses_in_transition",
subscriptionId,
resourceGroupName,
location,
ipPool
FROM azure_stack.fabric_admin.ip_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, '$.startIpAddress') as "start_ip_address",
json_extract_path_text(properties, '$.endIpAddress') as "end_ip_address",
json_extract_path_text(properties, '$.addressPrefix') as "address_prefix",
json_extract_path_text(properties, '$.numberOfIpAddresses') as "number_of_ip_addresses",
json_extract_path_text(properties, '$.numberOfAllocatedIpAddresses') as "number_of_allocated_ip_addresses",
json_extract_path_text(properties, '$.numberOfIpAddressesInTransition') as "number_of_ip_addresses_in_transition",
subscriptionId,
resourceGroupName,
location,
ipPool
FROM azure_stack.fabric_admin.ip_pools
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND location = 'replace-me';