Contact

Customer creates a contact resource for a spacecraft resource. API Version: 2021-04-04-preview.

Example Usage

Create a contact

using System.Collections.Generic;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var contact = new AzureNative.Orbital.Contact("contact", new()
{
ContactName = "contact1",
ContactProfile = new AzureNative.Orbital.Inputs.ResourceReferenceArgs
{
Id = "/subscriptions/subId/resourceGroups/rg/Microsoft.Orbital/contactProfiles/AQUA_DIRECTPLAYBACK_WITH_UPLINK",
},
GroundStationName = "westus_gs1",
ReservationEndTime = "2020-07-16T20:55:00.00Z",
ReservationStartTime = "2020-07-16T20:35:00.00Z",
ResourceGroupName = "rg1",
SpacecraftName = "AQUA",
});
});
package main
import (
orbital "github.com/pulumi/pulumi-azure-native/sdk/go/azure/orbital"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := orbital.NewContact(ctx, "contact", &orbital.ContactArgs{
ContactName: pulumi.String("contact1"),
ContactProfile: &orbital.ResourceReferenceArgs{
Id: pulumi.String("/subscriptions/subId/resourceGroups/rg/Microsoft.Orbital/contactProfiles/AQUA_DIRECTPLAYBACK_WITH_UPLINK"),
},
GroundStationName: pulumi.String("westus_gs1"),
ReservationEndTime: pulumi.String("2020-07-16T20:55:00.00Z"),
ReservationStartTime: pulumi.String("2020-07-16T20:35:00.00Z"),
ResourceGroupName: pulumi.String("rg1"),
SpacecraftName: pulumi.String("AQUA"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.orbital.Contact;
import com.pulumi.azurenative.orbital.ContactArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var contact = new Contact("contact", ContactArgs.builder()
.contactName("contact1")
.contactProfile(Map.of("id", "/subscriptions/subId/resourceGroups/rg/Microsoft.Orbital/contactProfiles/AQUA_DIRECTPLAYBACK_WITH_UPLINK"))
.groundStationName("westus_gs1")
.reservationEndTime("2020-07-16T20:55:00.00Z")
.reservationStartTime("2020-07-16T20:35:00.00Z")
.resourceGroupName("rg1")
.spacecraftName("AQUA")
.build());
}
}

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:orbital:Contact contact1 /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Orbital/spacecrafts/AQUA/contacts/contact1

Properties

Link copied to clipboard

The reference to the contact profile resource.

Link copied to clipboard

Azimuth of the antenna at the end of the contact in decimal degrees.

Link copied to clipboard

Spacecraft elevation above the horizon at contact end.

Link copied to clipboard
val errorMessage: Output<String>

Any error message while scheduling a contact.

Link copied to clipboard
val etag: Output<String>

A unique read-only string that changes whenever the resource is updated.

Link copied to clipboard

Azure Ground Station name.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard

Maximum elevation of the antenna during the contact in decimal degrees.

Link copied to clipboard
val name: Output<String>

The name of the resource

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Reservation end time of a contact.

Link copied to clipboard

Reservation start time of a contact.

Link copied to clipboard
val rxEndTime: Output<String>

Receive end time of a contact.

Link copied to clipboard
val rxStartTime: Output<String>

Receive start time of a contact.

Link copied to clipboard

Azimuth of the antenna at the start of the contact in decimal degrees.

Link copied to clipboard

Spacecraft elevation above the horizon at contact start.

Link copied to clipboard
val status: Output<String>

Status of a contact.

Link copied to clipboard

Azure Resource Manager metadata containing createdBy and modifiedBy information.

Link copied to clipboard
val txEndTime: Output<String>

Transmit end time of a contact.

Link copied to clipboard
val txStartTime: Output<String>

Transmit start time of a contact.

Link copied to clipboard
val type: Output<String>

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Link copied to clipboard
val urn: Output<String>