vw_network_functions
Creates, updates, deletes, gets or lists a vw_network_functions
resource.
Overview
Name | vw_network_functions |
Type | View |
Id | azure.hybrid_network.vw_network_functions |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
etag as etag,
identity as identity,
tags as tags,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.publisherName') as "publisher_name",
JSON_EXTRACT(properties, '$.publisherScope') as "publisher_scope",
JSON_EXTRACT(properties, '$.networkFunctionDefinitionGroupName') as "network_function_definition_group_name",
JSON_EXTRACT(properties, '$.networkFunctionDefinitionVersion') as "network_function_definition_version",
JSON_EXTRACT(properties, '$.networkFunctionDefinitionOfferingLocation') as "network_function_definition_offering_location",
JSON_EXTRACT(properties, '$.networkFunctionDefinitionVersionResourceReference') as "network_function_definition_version_resource_reference",
JSON_EXTRACT(properties, '$.nfviType') as "nfvi_type",
JSON_EXTRACT(properties, '$.nfviId') as "nfvi_id",
JSON_EXTRACT(properties, '$.allowSoftwareUpdate') as "allow_software_update",
JSON_EXTRACT(properties, '$.configurationType') as "configuration_type",
JSON_EXTRACT(properties, '$.roleOverrideValues') as "role_override_values",
subscriptionId,
resourceGroupName,
networkFunctionName
FROM azure.hybrid_network.network_functions
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
etag as etag,
identity as identity,
tags as tags,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.publisherName') as "publisher_name",
json_extract_path_text(properties, '$.publisherScope') as "publisher_scope",
json_extract_path_text(properties, '$.networkFunctionDefinitionGroupName') as "network_function_definition_group_name",
json_extract_path_text(properties, '$.networkFunctionDefinitionVersion') as "network_function_definition_version",
json_extract_path_text(properties, '$.networkFunctionDefinitionOfferingLocation') as "network_function_definition_offering_location",
json_extract_path_text(properties, '$.networkFunctionDefinitionVersionResourceReference') as "network_function_definition_version_resource_reference",
json_extract_path_text(properties, '$.nfviType') as "nfvi_type",
json_extract_path_text(properties, '$.nfviId') as "nfvi_id",
json_extract_path_text(properties, '$.allowSoftwareUpdate') as "allow_software_update",
json_extract_path_text(properties, '$.configurationType') as "configuration_type",
json_extract_path_text(properties, '$.roleOverrideValues') as "role_override_values",
subscriptionId,
resourceGroupName,
networkFunctionName
FROM azure.hybrid_network.network_functions
WHERE subscriptionId = 'replace-me';