vw_resource_provider_states
Creates, updates, deletes, gets or lists a vw_resource_provider_states
resource.
Overview
Name | vw_resource_provider_states |
Type | View |
Id | azure_stack.network_admin.vw_resource_provider_states |
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, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.virtualNetworkHealth') as "virtual_network_health",
JSON_EXTRACT(properties, '$.loadBalancerMuxHealth') as "load_balancer_mux_health",
JSON_EXTRACT(properties, '$.virtualGatewayHealth') as "virtual_gateway_health",
JSON_EXTRACT(properties, '$.publicIpAddressUsage') as "public_ip_address_usage",
JSON_EXTRACT(properties, '$.backendIpUsage') as "backend_ip_usage",
JSON_EXTRACT(properties, '$.macAddressUsage') as "mac_address_usage",
subscriptionId
FROM azure_stack.network_admin.resource_provider_states
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.virtualNetworkHealth') as "virtual_network_health",
json_extract_path_text(properties, '$.loadBalancerMuxHealth') as "load_balancer_mux_health",
json_extract_path_text(properties, '$.virtualGatewayHealth') as "virtual_gateway_health",
json_extract_path_text(properties, '$.publicIpAddressUsage') as "public_ip_address_usage",
json_extract_path_text(properties, '$.backendIpUsage') as "backend_ip_usage",
json_extract_path_text(properties, '$.macAddressUsage') as "mac_address_usage",
subscriptionId
FROM azure_stack.network_admin.resource_provider_states
WHERE subscriptionId = 'replace-me';