SpacecraftArgs

data class SpacecraftArgs(val links: Output<List<SpacecraftLinkArgs>>? = null, val location: Output<String>? = null, val name: Output<String>? = null, val noradId: Output<String>? = null, val resourceGroupName: Output<String>? = null, val tags: Output<Map<String, String>>? = null, val titleLine: Output<String>? = null, val twoLineElements: Output<List<String>>? = null) : ConvertibleToJava<SpacecraftArgs>

Manages a Spacecraft.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.orbital.Spacecraft;
import com.pulumi.azure.orbital.SpacecraftArgs;
import com.pulumi.azure.orbital.inputs.SpacecraftLinkArgs;
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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
.location("West Europe")
.build());
var exampleSpacecraft = new Spacecraft("exampleSpacecraft", SpacecraftArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.location("westeurope")
.noradId("12345")
.links(SpacecraftLinkArgs.builder()
.bandwidthMhz(100)
.centerFrequencyMhz(101)
.direction("Uplink")
.polarization("LHCP")
.name("examplename")
.build())
.twoLineElements(
"1 23455U 94089A 97320.90946019 .00000140 00000-0 10191-3 0 2621",
"2 23455 99.0090 272.6745 0008546 223.1686 136.8816 14.11711747148495")
.titleLine("AQUA")
.tags(Map.of("aks-managed-cluster-name", "9a57225d-a405-4d40-aa46-f13d2342abef"))
.build());
}
}

Import

Spacecraft can be imported using the resource id, e.g.

$ pulumi import azure:orbital/spacecraft:Spacecraft example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Orbital/spacecrafts/spacecraft1

Constructors

Link copied to clipboard
fun SpacecraftArgs(links: Output<List<SpacecraftLinkArgs>>? = null, location: Output<String>? = null, name: Output<String>? = null, noradId: Output<String>? = null, resourceGroupName: Output<String>? = null, tags: Output<Map<String, String>>? = null, titleLine: Output<String>? = null, twoLineElements: Output<List<String>>? = null)

Functions

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

Properties

Link copied to clipboard
val links: Output<List<SpacecraftLinkArgs>>? = null

A links block as defined below. Changing this forces a new resource to be created.

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

The location where the Spacecraft exists. Changing this forces a new resource to be created.

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

The name of the Spacecraft. Changing this forces a new resource to be created.

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

NORAD ID of the Spacecraft.

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

The name of the Resource Group where the Spacecraft exists. Changing this forces a new resource to be created.

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

A mapping of tags to assign to the resource.

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

Title of the two line elements (TLE).

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

A list of the two line elements (TLE), the first string being the first of the TLE, the second string being the second line of the TLE. Changing this forces a new resource to be created.