GroundStationArgs

data class GroundStationArgs(val altitudeMeters: Output<Double>? = null, val capabilities: Output<List<Either<String, Capability>>>? = null, val city: Output<String>? = null, val globalCommunicationsSite: Output<GroundStationsPropertiesGlobalCommunicationsSiteArgs>? = null, val groundStationName: Output<String>? = null, val latitudeDegrees: Output<Double>? = null, val location: Output<String>? = null, val longitudeDegrees: Output<Double>? = null, val providerName: Output<String>? = null, val resourceGroupName: Output<String>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<GroundStationArgs>

Ground Station contains one or more antennas. Uses Azure REST API version 2024-03-01-preview. In version 2.x of the Azure Native provider, it used API version 2024-03-01-preview. Other available API versions: 2024-03-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native orbital [ApiVersion]. See the ../../../version-guide/#accessing-any-api-version-via-local-packages for details.

Example Usage

Create a ground station

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var groundStation = new AzureNative.Orbital.GroundStation("groundStation", new()
{
AltitudeMeters = 1500.83,
Capabilities = new[]
{
AzureNative.Orbital.Capability.Communication,
},
City = "redmond",
GlobalCommunicationsSite = new AzureNative.Orbital.Inputs.GroundStationsPropertiesGlobalCommunicationsSiteArgs
{
Id = "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/providers/Microsoft.Orbital/globalCommunicationsSites/contoso-Vernon",
},
GroundStationName = "westus_gs1",
LatitudeDegrees = -122.122,
Location = "westus",
LongitudeDegrees = 47.674,
ProviderName = "Microsoft",
ResourceGroupName = "rg1",
Tags =
{
{ "key1", "value1" },
{ "key2", "value2" },
},
});
});
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.NewGroundStation(ctx, "groundStation", &orbital.GroundStationArgs{
AltitudeMeters: pulumi.Float64(1500.83),
Capabilities: pulumi.StringArray{
pulumi.String(orbital.CapabilityCommunication),
},
City: pulumi.String("redmond"),
GlobalCommunicationsSite: &orbital.GroundStationsPropertiesGlobalCommunicationsSiteArgs{
Id: pulumi.String("/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/providers/Microsoft.Orbital/globalCommunicationsSites/contoso-Vernon"),
},
GroundStationName: pulumi.String("westus_gs1"),
LatitudeDegrees: pulumi.Float64(-122.122),
Location: pulumi.String("westus"),
LongitudeDegrees: pulumi.Float64(47.674),
ProviderName: pulumi.String("Microsoft"),
ResourceGroupName: pulumi.String("rg1"),
Tags: pulumi.StringMap{
"key1": pulumi.String("value1"),
"key2": pulumi.String("value2"),
},
})
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.GroundStation;
import com.pulumi.azurenative.orbital.GroundStationArgs;
import com.pulumi.azurenative.orbital.inputs.GroundStationsPropertiesGlobalCommunicationsSiteArgs;
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 groundStation = new GroundStation("groundStation", GroundStationArgs.builder()
.altitudeMeters(1500.83)
.capabilities("Communication")
.city("redmond")
.globalCommunicationsSite(GroundStationsPropertiesGlobalCommunicationsSiteArgs.builder()
.id("/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/providers/Microsoft.Orbital/globalCommunicationsSites/contoso-Vernon")
.build())
.groundStationName("westus_gs1")
.latitudeDegrees(-122.122)
.location("westus")
.longitudeDegrees(47.674)
.providerName("Microsoft")
.resourceGroupName("rg1")
.tags(Map.ofEntries(
Map.entry("key1", "value1"),
Map.entry("key2", "value2")
))
.build());
}
}

Import

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

$ pulumi import azure-native:orbital:GroundStation westus_gs1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Orbital/groundStations/{groundStationName}

Constructors

Link copied to clipboard
constructor(altitudeMeters: Output<Double>? = null, capabilities: Output<List<Either<String, Capability>>>? = null, city: Output<String>? = null, globalCommunicationsSite: Output<GroundStationsPropertiesGlobalCommunicationsSiteArgs>? = null, groundStationName: Output<String>? = null, latitudeDegrees: Output<Double>? = null, location: Output<String>? = null, longitudeDegrees: Output<Double>? = null, providerName: Output<String>? = null, resourceGroupName: Output<String>? = null, tags: Output<Map<String, String>>? = null)

Properties

Link copied to clipboard
val altitudeMeters: Output<Double>? = null

Altitude of the ground station.

Link copied to clipboard
val capabilities: Output<List<Either<String, Capability>>>? = null

Ground station capabilities.

Link copied to clipboard
val city: Output<String>? = null

City of ground station.

Link copied to clipboard

A reference to global communications site.

Link copied to clipboard
val groundStationName: Output<String>? = null

Ground Station name.

Link copied to clipboard
val latitudeDegrees: Output<Double>? = null

Latitude of the ground station in decimal degrees.

Link copied to clipboard
val location: Output<String>? = null

The geo-location where the resource lives

Link copied to clipboard
val longitudeDegrees: Output<Double>? = null

Longitude of the ground station in decimal degrees.

Link copied to clipboard
val providerName: Output<String>? = null

Ground station provider name.

Link copied to clipboard
val resourceGroupName: Output<String>? = null

The name of the resource group. The name is case insensitive.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

Resource tags.

Functions

Link copied to clipboard
open override fun toJava(): GroundStationArgs