Contact

class Contact : KotlinCustomResource

Customer creates a contact resource for a spacecraft resource. Uses Azure REST API version 2022-11-01. Other available API versions: 2022-03-01.

Example Usage

Create a contact

using System.Collections.Generic;
using System.Linq;
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.ContactsPropertiesContactProfileArgs
{
Id = "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/contoso-Rgp/providers/Microsoft.Orbital/contactProfiles/CONTOSO-CP",
},
GroundStationName = "EASTUS2_0",
ReservationEndTime = "2023-02-22T11:10:45Z",
ReservationStartTime = "2023-02-22T10:58:30Z",
ResourceGroupName = "contoso-Rgp",
SpacecraftName = "CONTOSO_SAT",
});
});
package main
import (
orbital "github.com/pulumi/pulumi-azure-native-sdk/orbital/v2"
"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.ContactsPropertiesContactProfileArgs{
Id: pulumi.String("/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/contoso-Rgp/providers/Microsoft.Orbital/contactProfiles/CONTOSO-CP"),
},
GroundStationName: pulumi.String("EASTUS2_0"),
ReservationEndTime: pulumi.String("2023-02-22T11:10:45Z"),
ReservationStartTime: pulumi.String("2023-02-22T10:58:30Z"),
ResourceGroupName: pulumi.String("contoso-Rgp"),
SpacecraftName: pulumi.String("CONTOSO_SAT"),
})
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 com.pulumi.azurenative.orbital.inputs.ContactsPropertiesContactProfileArgs;
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(ContactsPropertiesContactProfileArgs.builder()
.id("/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/contoso-Rgp/providers/Microsoft.Orbital/contactProfiles/CONTOSO-CP")
.build())
.groundStationName("EASTUS2_0")
.reservationEndTime("2023-02-22T11:10:45Z")
.reservationStartTime("2023-02-22T10:58:30Z")
.resourceGroupName("contoso-Rgp")
.spacecraftName("CONTOSO_SAT")
.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/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Orbital/spacecrafts/{spacecraftName}/contacts/{contactName}

Properties

Link copied to clipboard

The configuration associated with the allocated antenna.

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

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
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Reservation end time of a contact (ISO 8601 UTC standard).

Link copied to clipboard

Reservation start time of a contact (ISO 8601 UTC standard).

Link copied to clipboard
val rxEndTime: Output<String>

Receive end time of a contact (ISO 8601 UTC standard).

Link copied to clipboard
val rxStartTime: Output<String>

Receive start time of a contact (ISO 8601 UTC standard).

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 (ISO 8601 UTC standard).

Link copied to clipboard
val txStartTime: Output<String>

Transmit start time of a contact (ISO 8601 UTC standard).

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>