Ground Station Args
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/v3"
"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
Properties
Altitude of the ground station.
Ground station capabilities.
A reference to global communications site.
Ground Station name.
Latitude of the ground station in decimal degrees.
Longitude of the ground station in decimal degrees.
Ground station provider name.
The name of the resource group. The name is case insensitive.