Skip to main content

spacecrafts_available_contacts

Creates, updates, deletes, gets or lists a spacecrafts_available_contacts resource.

Overview

Namespacecrafts_available_contacts
TypeResource
Idazure.orbital.spacecrafts_available_contacts

Fields

The following fields are returned by SELECT queries:

Request successful. The operation returns a list of available contacts resources.

NameDatatypeDescription
groundStationNamestringName of Azure Ground Station.
propertiesobjectContact Instance Properties.
spacecraftobjectResource Reference.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, subscriptionId, spacecraftNameReturns 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.

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
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
spacecraftNamestringSpacecraft ID.
subscriptionIdstringThe ID of the target subscription.

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 }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND spacecraftName = '{{ spacecraftName }}' -- required
;