Contacts - Create
Creates a contact.
PUT https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Orbital/spacecrafts/{spacecraftName}/contacts/{contactName}?api-version=2022-11-01
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
contact
|
path | True |
string |
Contact name. |
resource
|
path | True |
string |
The name of the resource group. The name is case insensitive. |
spacecraft
|
path | True |
string |
Spacecraft ID. |
subscription
|
path | True |
string |
The ID of the target subscription. |
api-version
|
query | True |
string |
The API version to use for this operation. |
Request Body
Name | Required | Type | Description |
---|---|---|---|
properties.contactProfile | True |
The reference to the contact profile resource. |
|
properties.groundStationName | True |
string |
Azure Ground Station name. |
properties.reservationEndTime | True |
string |
Reservation end time of a contact (ISO 8601 UTC standard). |
properties.reservationStartTime | True |
string |
Reservation start time of a contact (ISO 8601 UTC standard). |
properties.provisioningState |
The current state of the resource's creation, deletion, or modification. |
Responses
Name | Type | Description |
---|---|---|
200 OK |
OK. |
|
201 Created |
Create successful. The operation returns the resulting contact resource. Headers Azure-AsyncOperation: string |
|
Other Status Codes |
Error response describing why the operation failed. |
Examples
Create a contact
Sample request
PUT https://management.azure.com/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/contoso-Rgp/providers/Microsoft.Orbital/spacecrafts/CONTOSO_SAT/contacts/contact1?api-version=2022-11-01
{
"properties": {
"reservationStartTime": "2023-02-22T10:58:30Z",
"reservationEndTime": "2023-02-22T11:10:45Z",
"groundStationName": "EASTUS2_0",
"contactProfile": {
"id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/contoso-Rgp/providers/Microsoft.Orbital/contactProfiles/CONTOSO-CP"
}
}
}
Sample response
Azure-AsyncOperation: https://management.azure.com/Microsoft.Orbital/operationResults/4e2ffff7-b331-4fcb-ab11-b5fa49368188?api-version=2022-11-01
{
"id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/contoso-Rgp/providers/Microsoft.Orbital/spacecrafts/CONTOSO_SAT/contacts/contact1",
"name": "contact1",
"type": "Microsoft.Orbital/spacecrafts/contacts",
"properties": {
"status": "scheduled",
"reservationStartTime": "2023-02-22T10:58:30Z",
"reservationEndTime": "2023-02-22T11:10:45Z",
"errorMessage": null,
"groundStationName": "EASTUS2_0",
"contactProfile": {
"id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/contoso-Rgp/providers/Microsoft.Orbital/contactProfiles/CONTOSO-CP"
},
"antennaConfiguration": null,
"maximumElevationDegrees": 85.9796,
"txStartTime": "2023-02-22T10:58:30Z",
"txEndTime": "2023-02-22T11:10:45Z",
"rxStartTime": "2023-02-22T10:58:30Z",
"rxEndTime": "2023-02-22T11:10:45Z",
"startAzimuthDegrees": 165.758896,
"endAzimuthDegrees": 345.848482,
"startElevationDegrees": 5,
"endElevationDegrees": 5.048656
}
}
Azure-AsyncOperation: https://management.azure.com/Microsoft.Orbital/operationResults/4e2ffff7-b331-4fcb-ab11-b5fa49368188?api-version=2022-11-01
{
"id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/contoso-Rgp/providers/Microsoft.Orbital/spacecrafts/CONTOSO_SAT/contacts/contact1",
"name": "contact1",
"type": "Microsoft.Orbital/spacecrafts/contacts",
"properties": {
"status": "scheduled",
"reservationStartTime": "2023-02-22T10:58:30Z",
"reservationEndTime": "2023-02-22T11:10:45Z",
"errorMessage": null,
"groundStationName": "EASTUS2_0",
"contactProfile": {
"id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/contoso-Rgp/providers/Microsoft.Orbital/contactProfiles/CONTOSO-CP"
},
"antennaConfiguration": null,
"maximumElevationDegrees": 0,
"txStartTime": null,
"txEndTime": null,
"rxStartTime": null,
"rxEndTime": null,
"startAzimuthDegrees": 0,
"endAzimuthDegrees": 0,
"startElevationDegrees": 0,
"endElevationDegrees": 0
}
}
Definitions
Name | Description |
---|---|
Antenna |
The configuration associated with the allocated antenna. |
Contact |
Customer creates a contact resource for a spacecraft resource. |
Contact |
The reference to the contact profile resource. |
Contacts |
Status of a contact. |
created |
The type of identity that created the resource. |
Error |
The resource management error additional info. |
Error |
The error detail. |
Error |
Error response |
Provisioning |
The current state of the resource's creation, deletion, or modification. |
system |
Metadata pertaining to creation and last modification of the resource. |
AntennaConfiguration
The configuration associated with the allocated antenna.
Name | Type | Description |
---|---|---|
destinationIp |
string |
The destination IP a packet can be sent to. This would for example be the TCP endpoint you would send data to. |
sourceIps |
string[] |
List of Source IP |
Contact
Customer creates a contact resource for a spacecraft resource.
Name | Type | Description |
---|---|---|
id |
string |
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name |
string |
The name of the resource |
properties.antennaConfiguration |
The configuration associated with the allocated antenna. |
|
properties.contactProfile |
The reference to the contact profile resource. |
|
properties.endAzimuthDegrees |
number |
Azimuth of the antenna at the end of the contact in decimal degrees. |
properties.endElevationDegrees |
number |
Spacecraft elevation above the horizon at contact end. |
properties.errorMessage |
string |
Any error message while scheduling a contact. |
properties.groundStationName |
string |
Azure Ground Station name. |
properties.maximumElevationDegrees |
number |
Maximum elevation of the antenna during the contact in decimal degrees. |
properties.provisioningState |
The current state of the resource's creation, deletion, or modification. |
|
properties.reservationEndTime |
string |
Reservation end time of a contact (ISO 8601 UTC standard). |
properties.reservationStartTime |
string |
Reservation start time of a contact (ISO 8601 UTC standard). |
properties.rxEndTime |
string |
Receive end time of a contact (ISO 8601 UTC standard). |
properties.rxStartTime |
string |
Receive start time of a contact (ISO 8601 UTC standard). |
properties.startAzimuthDegrees |
number |
Azimuth of the antenna at the start of the contact in decimal degrees. |
properties.startElevationDegrees |
number |
Spacecraft elevation above the horizon at contact start. |
properties.status |
Status of a contact. |
|
properties.txEndTime |
string |
Transmit end time of a contact (ISO 8601 UTC standard). |
properties.txStartTime |
string |
Transmit start time of a contact (ISO 8601 UTC standard). |
systemData |
Azure Resource Manager metadata containing createdBy and modifiedBy information. |
|
type |
string |
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
ContactProfile
The reference to the contact profile resource.
Name | Type | Description |
---|---|---|
id |
string |
Resource ID. |
ContactsStatus
Status of a contact.
Name | Type | Description |
---|---|---|
cancelled |
string |
|
failed |
string |
|
providerCancelled |
string |
|
scheduled |
string |
|
succeeded |
string |
createdByType
The type of identity that created the resource.
Name | Type | Description |
---|---|---|
Application |
string |
|
Key |
string |
|
ManagedIdentity |
string |
|
User |
string |
ErrorAdditionalInfo
The resource management error additional info.
Name | Type | Description |
---|---|---|
info |
object |
The additional info. |
type |
string |
The additional info type. |
ErrorDetail
The error detail.
Name | Type | Description |
---|---|---|
additionalInfo |
The error additional info. |
|
code |
string |
The error code. |
details |
The error details. |
|
message |
string |
The error message. |
target |
string |
The error target. |
ErrorResponse
Error response
Name | Type | Description |
---|---|---|
error |
The error object. |
ProvisioningState
The current state of the resource's creation, deletion, or modification.
systemData
Metadata pertaining to creation and last modification of the resource.
Name | Type | Description |
---|---|---|
createdAt |
string |
The timestamp of resource creation (UTC). |
createdBy |
string |
The identity that created the resource. |
createdByType |
The type of identity that created the resource. |
|
lastModifiedAt |
string |
The timestamp of resource last modification (UTC) |
lastModifiedBy |
string |
The identity that last modified the resource. |
lastModifiedByType |
The type of identity that last modified the resource. |