spacecrafts_available_contacts
Creates, updates, deletes, gets or lists a spacecrafts_available_contacts
resource.
Overview
Name | spacecrafts_available_contacts |
Type | Resource |
Id | azure.orbital.spacecrafts_available_contacts |
Fields
Name | Datatype | Description |
---|---|---|
groundStationName | string | Name of Azure Ground Station. |
properties | object | Properties of Contact resource. |
spacecraft | object | The reference to the spacecraft resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | resourceGroupName, spacecraftName, subscriptionId, data__contactProfile, data__endTime, data__groundStationName, data__startTime | Returns list of available contacts. A contact is available if the spacecraft is visible from the ground station for more than the minimum viable contact duration provided in the contact profile. |
SELECT
examples
Returns list of available contacts. A contact is available if the spacecraft is visible from the ground station for more than the minimum viable contact duration provided in the contact profile.
SELECT
groundStationName,
properties,
spacecraft
FROM azure.orbital.spacecrafts_available_contacts
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND spacecraftName = '{{ spacecraftName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND data__contactProfile = '{{ data__contactProfile }}'
AND data__endTime = '{{ data__endTime }}'
AND data__groundStationName = '{{ data__groundStationName }}'
AND data__startTime = '{{ data__startTime }}';