vw_device_settings_network_settings
Creates, updates, deletes, gets or lists a vw_device_settings_network_settings
resource.
Overview
Name | vw_device_settings_network_settings |
Type | View |
Id | azure_extras.storsimple_8000_series.vw_device_settings_network_settings |
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,
kind as kind,
JSON_EXTRACT(properties, '$.dnsSettings') as "dns_settings",
JSON_EXTRACT(properties, '$.networkAdapters') as "network_adapters",
JSON_EXTRACT(properties, '$.webproxySettings') as "webproxy_settings",
subscriptionId,
resourceGroupName,
managerName,
deviceName
FROM azure_extras.storsimple_8000_series.device_settings_network_settings
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND managerName = 'replace-me' AND deviceName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
kind as kind,
json_extract_path_text(properties, '$.dnsSettings') as "dns_settings",
json_extract_path_text(properties, '$.networkAdapters') as "network_adapters",
json_extract_path_text(properties, '$.webproxySettings') as "webproxy_settings",
subscriptionId,
resourceGroupName,
managerName,
deviceName
FROM azure_extras.storsimple_8000_series.device_settings_network_settings
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND managerName = 'replace-me' AND deviceName = 'replace-me';