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
The following fields are returned by SELECT
queries:
- list
Request successful. The operation returns a list of available contacts resources.
Name | Datatype | Description |
---|---|---|
groundStationName | string | Name of Azure Ground Station. |
properties | object | Contact Instance Properties. |
spacecraft | object | Resource Reference. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceGroupName , subscriptionId , spacecraftName | 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. |
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 |
---|---|---|
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
spacecraftName | string | Spacecraft ID. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- list
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
;