vw_services
Creates, updates, deletes, gets or lists a vw_services
resource.
Overview
Name | vw_services |
Type | View |
Id | azure.data_migration.vw_services |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
etag as etag,
kind as kind,
sku as sku,
systemData as system_data,
tags as tags,
type as type,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.publicKey') as "public_key",
JSON_EXTRACT(properties, '$.virtualSubnetId') as "virtual_subnet_id",
JSON_EXTRACT(properties, '$.virtualNicId') as "virtual_nic_id",
JSON_EXTRACT(properties, '$.autoStopDelay') as "auto_stop_delay",
JSON_EXTRACT(properties, '$.deleteResourcesOnStop') as "delete_resources_on_stop",
subscriptionId,
groupName,
serviceName
FROM azure.data_migration.services
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
etag as etag,
kind as kind,
sku as sku,
systemData as system_data,
tags as tags,
type as type,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.publicKey') as "public_key",
json_extract_path_text(properties, '$.virtualSubnetId') as "virtual_subnet_id",
json_extract_path_text(properties, '$.virtualNicId') as "virtual_nic_id",
json_extract_path_text(properties, '$.autoStopDelay') as "auto_stop_delay",
json_extract_path_text(properties, '$.deleteResourcesOnStop') as "delete_resources_on_stop",
subscriptionId,
groupName,
serviceName
FROM azure.data_migration.services
WHERE subscriptionId = 'replace-me';