available_ground_stations
Creates, updates, deletes, gets or lists an available_ground_stations
resource.
Overview
Name | available_ground_stations |
Type | Resource |
Id | azure.orbital.available_ground_stations |
Fields
The following fields are returned by SELECT
queries:
- list_by_capability
Request successful. The operation returns a list of Ground Station resources.
Name | Datatype | Description |
---|---|---|
id | string | ID of groundStation. |
name | string | Name of the ground station. |
location | string | Azure region. |
properties | object | Properties object for Available groundstation. |
type | string | Resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list_by_capability | select | subscriptionId , capability | Returns 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.
Name | Datatype | Description |
---|---|---|
capability | string | Ground Station Capability. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- list_by_capability
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
;