vw_network_functions
Creates, updates, deletes, gets or lists a vw_network_functions
resource.
Overview
Name | vw_network_functions |
Type | View |
Id | azure.mpc_network_function.vw_network_functions |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
JSON_EXTRACT(properties, '$.sku') as "sku",
JSON_EXTRACT(properties, '$.networkFunctionType') as "network_function_type",
JSON_EXTRACT(properties, '$.networkFunctionAdministrativeState') as "network_function_administrative_state",
JSON_EXTRACT(properties, '$.networkFunctionOperationalStatus') as "network_function_operational_status",
JSON_EXTRACT(properties, '$.infrastructureElementCount') as "infrastructure_element_count",
JSON_EXTRACT(properties, '$.capacity') as "capacity",
JSON_EXTRACT(properties, '$.userDescription') as "user_description",
JSON_EXTRACT(properties, '$.deploymentNotes') as "deployment_notes",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
networkFunctionName
FROM azure.mpc_network_function.network_functions
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.sku') as "sku",
json_extract_path_text(properties, '$.networkFunctionType') as "network_function_type",
json_extract_path_text(properties, '$.networkFunctionAdministrativeState') as "network_function_administrative_state",
json_extract_path_text(properties, '$.networkFunctionOperationalStatus') as "network_function_operational_status",
json_extract_path_text(properties, '$.infrastructureElementCount') as "infrastructure_element_count",
json_extract_path_text(properties, '$.capacity') as "capacity",
json_extract_path_text(properties, '$.userDescription') as "user_description",
json_extract_path_text(properties, '$.deploymentNotes') as "deployment_notes",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
networkFunctionName
FROM azure.mpc_network_function.network_functions
WHERE subscriptionId = 'replace-me';