vw_iscsi_servers
Creates, updates, deletes, gets or lists a vw_iscsi_servers
resource.
Overview
Name | vw_iscsi_servers |
Type | View |
Id | azure_extras.storsimple_1200_series.vw_iscsi_servers |
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, '$.storageDomainId') as "storage_domain_id",
JSON_EXTRACT(properties, '$.backupScheduleGroupId') as "backup_schedule_group_id",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.chapId') as "chap_id",
JSON_EXTRACT(properties, '$.reverseChapId') as "reverse_chap_id",
subscriptionId,
resourceGroupName,
managerName,
deviceName,
iscsiServerName
FROM azure_extras.storsimple_1200_series.iscsi_servers
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND managerName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.storageDomainId') as "storage_domain_id",
json_extract_path_text(properties, '$.backupScheduleGroupId') as "backup_schedule_group_id",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.chapId') as "chap_id",
json_extract_path_text(properties, '$.reverseChapId') as "reverse_chap_id",
subscriptionId,
resourceGroupName,
managerName,
deviceName,
iscsiServerName
FROM azure_extras.storsimple_1200_series.iscsi_servers
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND managerName = 'replace-me';