Skip to main content

available_ground_stations

Creates, updates, deletes, gets or lists an available_ground_stations resource.

Overview

Nameavailable_ground_stations
TypeResource
Idazure.orbital.available_ground_stations

Fields

The following fields are returned by SELECT queries:

Request successful. The operation returns a list of Ground Station resources.

NameDatatypeDescription
idstringID of groundStation.
namestringName of the ground station.
locationstringAzure region.
propertiesobjectProperties object for Available groundstation.
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_capabilityselectsubscriptionId, capabilityReturns list of available ground stations.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
capabilitystringGround Station Capability.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Returns list of available ground stations.

SELECT
id,
name,
location,
properties,
type
FROM azure.orbital.available_ground_stations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND capability = '{{ capability }}' -- required
;