vw_spacecrafts
Creates, updates, deletes, gets or lists a vw_spacecrafts
resource.
Overview
Name | vw_spacecrafts |
Type | View |
Id | azure.orbital.vw_spacecrafts |
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, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.noradId') as "norad_id",
JSON_EXTRACT(properties, '$.titleLine') as "title_line",
JSON_EXTRACT(properties, '$.tleLine1') as "tle_line1",
JSON_EXTRACT(properties, '$.tleLine2') as "tle_line2",
JSON_EXTRACT(properties, '$.links') as "links",
subscriptionId,
resourceGroupName,
spacecraftName
FROM azure.orbital.spacecrafts
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.noradId') as "norad_id",
json_extract_path_text(properties, '$.titleLine') as "title_line",
json_extract_path_text(properties, '$.tleLine1') as "tle_line1",
json_extract_path_text(properties, '$.tleLine2') as "tle_line2",
json_extract_path_text(properties, '$.links') as "links",
subscriptionId,
resourceGroupName,
spacecraftName
FROM azure.orbital.spacecrafts
WHERE subscriptionId = 'replace-me';