1. Packages
  2. Azure Classic
  3. API Docs
  4. orbital
  5. Spacecraft

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

azure.orbital.Spacecraft

Explore with Pulumi AI

Manages a Spacecraft.

Note: The azure.orbital.Spacecraft resource has been deprecated and will be removed in v5.0 of the AzureRM Provider.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const example = new azure.core.ResourceGroup("example", {
    name: "rg-example",
    location: "West Europe",
});
const exampleSpacecraft = new azure.orbital.Spacecraft("example", {
    name: "example-spacecraft",
    resourceGroupName: example.name,
    location: "westeurope",
    noradId: "12345",
    links: [{
        bandwidthMhz: 30,
        centerFrequencyMhz: 2050,
        direction: "Uplink",
        polarization: "LHCP",
        name: "examplename",
    }],
    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: {
        "aks-managed-cluster-name": "9a57225d-a405-4d40-aa46-f13d2342abef",
    },
});
Copy
import pulumi
import pulumi_azure as azure

example = azure.core.ResourceGroup("example",
    name="rg-example",
    location="West Europe")
example_spacecraft = azure.orbital.Spacecraft("example",
    name="example-spacecraft",
    resource_group_name=example.name,
    location="westeurope",
    norad_id="12345",
    links=[{
        "bandwidth_mhz": 30,
        "center_frequency_mhz": 2050,
        "direction": "Uplink",
        "polarization": "LHCP",
        "name": "examplename",
    }],
    two_line_elements=[
        "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",
    ],
    title_line="AQUA",
    tags={
        "aks-managed-cluster-name": "9a57225d-a405-4d40-aa46-f13d2342abef",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/orbital"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
			Name:     pulumi.String("rg-example"),
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		_, err = orbital.NewSpacecraft(ctx, "example", &orbital.SpacecraftArgs{
			Name:              pulumi.String("example-spacecraft"),
			ResourceGroupName: example.Name,
			Location:          pulumi.String("westeurope"),
			NoradId:           pulumi.String("12345"),
			Links: orbital.SpacecraftLinkArray{
				&orbital.SpacecraftLinkArgs{
					BandwidthMhz:       pulumi.Float64(30),
					CenterFrequencyMhz: pulumi.Float64(2050),
					Direction:          pulumi.String("Uplink"),
					Polarization:       pulumi.String("LHCP"),
					Name:               pulumi.String("examplename"),
				},
			},
			TwoLineElements: pulumi.StringArray{
				pulumi.String("1 23455U 94089A   97320.90946019  .00000140  00000-0  10191-3 0  2621"),
				pulumi.String("2 23455  99.0090 272.6745 0008546 223.1686 136.8816 14.11711747148495"),
			},
			TitleLine: pulumi.String("AQUA"),
			Tags: pulumi.StringMap{
				"aks-managed-cluster-name": pulumi.String("9a57225d-a405-4d40-aa46-f13d2342abef"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var example = new Azure.Core.ResourceGroup("example", new()
    {
        Name = "rg-example",
        Location = "West Europe",
    });

    var exampleSpacecraft = new Azure.Orbital.Spacecraft("example", new()
    {
        Name = "example-spacecraft",
        ResourceGroupName = example.Name,
        Location = "westeurope",
        NoradId = "12345",
        Links = new[]
        {
            new Azure.Orbital.Inputs.SpacecraftLinkArgs
            {
                BandwidthMhz = 30,
                CenterFrequencyMhz = 2050,
                Direction = "Uplink",
                Polarization = "LHCP",
                Name = "examplename",
            },
        },
        TwoLineElements = new[]
        {
            "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 = 
        {
            { "aks-managed-cluster-name", "9a57225d-a405-4d40-aa46-f13d2342abef" },
        },
    });

});
Copy
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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
            .name("rg-example")
            .location("West Europe")
            .build());

        var exampleSpacecraft = new Spacecraft("exampleSpacecraft", SpacecraftArgs.builder()
            .name("example-spacecraft")
            .resourceGroupName(example.name())
            .location("westeurope")
            .noradId("12345")
            .links(SpacecraftLinkArgs.builder()
                .bandwidthMhz(30)
                .centerFrequencyMhz(2050)
                .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());

    }
}
Copy
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: rg-example
      location: West Europe
  exampleSpacecraft:
    type: azure:orbital:Spacecraft
    name: example
    properties:
      name: example-spacecraft
      resourceGroupName: ${example.name}
      location: westeurope
      noradId: '12345'
      links:
        - bandwidthMhz: 30
          centerFrequencyMhz: 2050
          direction: Uplink
          polarization: LHCP
          name: examplename
      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:
        aks-managed-cluster-name: 9a57225d-a405-4d40-aa46-f13d2342abef
Copy

Create Spacecraft Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Spacecraft(name: string, args: SpacecraftArgs, opts?: CustomResourceOptions);
@overload
def Spacecraft(resource_name: str,
               args: SpacecraftArgs,
               opts: Optional[ResourceOptions] = None)

@overload
def Spacecraft(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               links: Optional[Sequence[SpacecraftLinkArgs]] = None,
               norad_id: Optional[str] = None,
               resource_group_name: Optional[str] = None,
               title_line: Optional[str] = None,
               two_line_elements: Optional[Sequence[str]] = None,
               location: Optional[str] = None,
               name: Optional[str] = None,
               tags: Optional[Mapping[str, str]] = None)
func NewSpacecraft(ctx *Context, name string, args SpacecraftArgs, opts ...ResourceOption) (*Spacecraft, error)
public Spacecraft(string name, SpacecraftArgs args, CustomResourceOptions? opts = null)
public Spacecraft(String name, SpacecraftArgs args)
public Spacecraft(String name, SpacecraftArgs args, CustomResourceOptions options)
type: azure:orbital:Spacecraft
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. SpacecraftArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. SpacecraftArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. SpacecraftArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. SpacecraftArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SpacecraftArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var spacecraftResource = new Azure.Orbital.Spacecraft("spacecraftResource", new()
{
    Links = new[]
    {
        new Azure.Orbital.Inputs.SpacecraftLinkArgs
        {
            BandwidthMhz = 0,
            CenterFrequencyMhz = 0,
            Direction = "string",
            Name = "string",
            Polarization = "string",
        },
    },
    NoradId = "string",
    ResourceGroupName = "string",
    TitleLine = "string",
    TwoLineElements = new[]
    {
        "string",
    },
    Location = "string",
    Name = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := orbital.NewSpacecraft(ctx, "spacecraftResource", &orbital.SpacecraftArgs{
	Links: orbital.SpacecraftLinkArray{
		&orbital.SpacecraftLinkArgs{
			BandwidthMhz:       pulumi.Float64(0),
			CenterFrequencyMhz: pulumi.Float64(0),
			Direction:          pulumi.String("string"),
			Name:               pulumi.String("string"),
			Polarization:       pulumi.String("string"),
		},
	},
	NoradId:           pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	TitleLine:         pulumi.String("string"),
	TwoLineElements: pulumi.StringArray{
		pulumi.String("string"),
	},
	Location: pulumi.String("string"),
	Name:     pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var spacecraftResource = new Spacecraft("spacecraftResource", SpacecraftArgs.builder()
    .links(SpacecraftLinkArgs.builder()
        .bandwidthMhz(0)
        .centerFrequencyMhz(0)
        .direction("string")
        .name("string")
        .polarization("string")
        .build())
    .noradId("string")
    .resourceGroupName("string")
    .titleLine("string")
    .twoLineElements("string")
    .location("string")
    .name("string")
    .tags(Map.of("string", "string"))
    .build());
Copy
spacecraft_resource = azure.orbital.Spacecraft("spacecraftResource",
    links=[{
        "bandwidth_mhz": 0,
        "center_frequency_mhz": 0,
        "direction": "string",
        "name": "string",
        "polarization": "string",
    }],
    norad_id="string",
    resource_group_name="string",
    title_line="string",
    two_line_elements=["string"],
    location="string",
    name="string",
    tags={
        "string": "string",
    })
Copy
const spacecraftResource = new azure.orbital.Spacecraft("spacecraftResource", {
    links: [{
        bandwidthMhz: 0,
        centerFrequencyMhz: 0,
        direction: "string",
        name: "string",
        polarization: "string",
    }],
    noradId: "string",
    resourceGroupName: "string",
    titleLine: "string",
    twoLineElements: ["string"],
    location: "string",
    name: "string",
    tags: {
        string: "string",
    },
});
Copy
type: azure:orbital:Spacecraft
properties:
    links:
        - bandwidthMhz: 0
          centerFrequencyMhz: 0
          direction: string
          name: string
          polarization: string
    location: string
    name: string
    noradId: string
    resourceGroupName: string
    tags:
        string: string
    titleLine: string
    twoLineElements:
        - string
Copy

Spacecraft Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Spacecraft resource accepts the following input properties:

Links
This property is required.
Changes to this property will trigger replacement.
List<SpacecraftLink>
A links block as defined below. Changing this forces a new resource to be created.
NoradId This property is required. string
NORAD ID of the Spacecraft.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Spacecraft exists. Changing this forces a new resource to be created.
TitleLine This property is required. string
Title of the two line elements (TLE).
TwoLineElements
This property is required.
Changes to this property will trigger replacement.
List<string>
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.
Location Changes to this property will trigger replacement. string
The location where the Spacecraft exists. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
The name of the Spacecraft. Changing this forces a new resource to be created.
Tags Dictionary<string, string>
A mapping of tags to assign to the resource.
Links
This property is required.
Changes to this property will trigger replacement.
[]SpacecraftLinkArgs
A links block as defined below. Changing this forces a new resource to be created.
NoradId This property is required. string
NORAD ID of the Spacecraft.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Spacecraft exists. Changing this forces a new resource to be created.
TitleLine This property is required. string
Title of the two line elements (TLE).
TwoLineElements
This property is required.
Changes to this property will trigger replacement.
[]string
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.
Location Changes to this property will trigger replacement. string
The location where the Spacecraft exists. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
The name of the Spacecraft. Changing this forces a new resource to be created.
Tags map[string]string
A mapping of tags to assign to the resource.
links
This property is required.
Changes to this property will trigger replacement.
List<SpacecraftLink>
A links block as defined below. Changing this forces a new resource to be created.
noradId This property is required. String
NORAD ID of the Spacecraft.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Resource Group where the Spacecraft exists. Changing this forces a new resource to be created.
titleLine This property is required. String
Title of the two line elements (TLE).
twoLineElements
This property is required.
Changes to this property will trigger replacement.
List<String>
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.
location Changes to this property will trigger replacement. String
The location where the Spacecraft exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
The name of the Spacecraft. Changing this forces a new resource to be created.
tags Map<String,String>
A mapping of tags to assign to the resource.
links
This property is required.
Changes to this property will trigger replacement.
SpacecraftLink[]
A links block as defined below. Changing this forces a new resource to be created.
noradId This property is required. string
NORAD ID of the Spacecraft.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Spacecraft exists. Changing this forces a new resource to be created.
titleLine This property is required. string
Title of the two line elements (TLE).
twoLineElements
This property is required.
Changes to this property will trigger replacement.
string[]
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.
location Changes to this property will trigger replacement. string
The location where the Spacecraft exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. string
The name of the Spacecraft. Changing this forces a new resource to be created.
tags {[key: string]: string}
A mapping of tags to assign to the resource.
links
This property is required.
Changes to this property will trigger replacement.
Sequence[SpacecraftLinkArgs]
A links block as defined below. Changing this forces a new resource to be created.
norad_id This property is required. str
NORAD ID of the Spacecraft.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the Resource Group where the Spacecraft exists. Changing this forces a new resource to be created.
title_line This property is required. str
Title of the two line elements (TLE).
two_line_elements
This property is required.
Changes to this property will trigger replacement.
Sequence[str]
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.
location Changes to this property will trigger replacement. str
The location where the Spacecraft exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. str
The name of the Spacecraft. Changing this forces a new resource to be created.
tags Mapping[str, str]
A mapping of tags to assign to the resource.
links
This property is required.
Changes to this property will trigger replacement.
List<Property Map>
A links block as defined below. Changing this forces a new resource to be created.
noradId This property is required. String
NORAD ID of the Spacecraft.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Resource Group where the Spacecraft exists. Changing this forces a new resource to be created.
titleLine This property is required. String
Title of the two line elements (TLE).
twoLineElements
This property is required.
Changes to this property will trigger replacement.
List<String>
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.
location Changes to this property will trigger replacement. String
The location where the Spacecraft exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
The name of the Spacecraft. Changing this forces a new resource to be created.
tags Map<String>
A mapping of tags to assign to the resource.

Outputs

All input properties are implicitly available as output properties. Additionally, the Spacecraft resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing Spacecraft Resource

Get an existing Spacecraft resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: SpacecraftState, opts?: CustomResourceOptions): Spacecraft
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        links: Optional[Sequence[SpacecraftLinkArgs]] = None,
        location: Optional[str] = None,
        name: Optional[str] = None,
        norad_id: Optional[str] = None,
        resource_group_name: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        title_line: Optional[str] = None,
        two_line_elements: Optional[Sequence[str]] = None) -> Spacecraft
func GetSpacecraft(ctx *Context, name string, id IDInput, state *SpacecraftState, opts ...ResourceOption) (*Spacecraft, error)
public static Spacecraft Get(string name, Input<string> id, SpacecraftState? state, CustomResourceOptions? opts = null)
public static Spacecraft get(String name, Output<String> id, SpacecraftState state, CustomResourceOptions options)
resources:  _:    type: azure:orbital:Spacecraft    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Links Changes to this property will trigger replacement. List<SpacecraftLink>
A links block as defined below. Changing this forces a new resource to be created.
Location Changes to this property will trigger replacement. string
The location where the Spacecraft exists. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
The name of the Spacecraft. Changing this forces a new resource to be created.
NoradId string
NORAD ID of the Spacecraft.
ResourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the Spacecraft exists. Changing this forces a new resource to be created.
Tags Dictionary<string, string>
A mapping of tags to assign to the resource.
TitleLine string
Title of the two line elements (TLE).
TwoLineElements Changes to this property will trigger replacement. List<string>
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.
Links Changes to this property will trigger replacement. []SpacecraftLinkArgs
A links block as defined below. Changing this forces a new resource to be created.
Location Changes to this property will trigger replacement. string
The location where the Spacecraft exists. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
The name of the Spacecraft. Changing this forces a new resource to be created.
NoradId string
NORAD ID of the Spacecraft.
ResourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the Spacecraft exists. Changing this forces a new resource to be created.
Tags map[string]string
A mapping of tags to assign to the resource.
TitleLine string
Title of the two line elements (TLE).
TwoLineElements Changes to this property will trigger replacement. []string
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.
links Changes to this property will trigger replacement. List<SpacecraftLink>
A links block as defined below. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. String
The location where the Spacecraft exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
The name of the Spacecraft. Changing this forces a new resource to be created.
noradId String
NORAD ID of the Spacecraft.
resourceGroupName Changes to this property will trigger replacement. String
The name of the Resource Group where the Spacecraft exists. Changing this forces a new resource to be created.
tags Map<String,String>
A mapping of tags to assign to the resource.
titleLine String
Title of the two line elements (TLE).
twoLineElements Changes to this property will trigger replacement. List<String>
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.
links Changes to this property will trigger replacement. SpacecraftLink[]
A links block as defined below. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. string
The location where the Spacecraft exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. string
The name of the Spacecraft. Changing this forces a new resource to be created.
noradId string
NORAD ID of the Spacecraft.
resourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the Spacecraft exists. Changing this forces a new resource to be created.
tags {[key: string]: string}
A mapping of tags to assign to the resource.
titleLine string
Title of the two line elements (TLE).
twoLineElements Changes to this property will trigger replacement. string[]
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.
links Changes to this property will trigger replacement. Sequence[SpacecraftLinkArgs]
A links block as defined below. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. str
The location where the Spacecraft exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. str
The name of the Spacecraft. Changing this forces a new resource to be created.
norad_id str
NORAD ID of the Spacecraft.
resource_group_name Changes to this property will trigger replacement. str
The name of the Resource Group where the Spacecraft exists. Changing this forces a new resource to be created.
tags Mapping[str, str]
A mapping of tags to assign to the resource.
title_line str
Title of the two line elements (TLE).
two_line_elements Changes to this property will trigger replacement. Sequence[str]
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.
links Changes to this property will trigger replacement. List<Property Map>
A links block as defined below. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. String
The location where the Spacecraft exists. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
The name of the Spacecraft. Changing this forces a new resource to be created.
noradId String
NORAD ID of the Spacecraft.
resourceGroupName Changes to this property will trigger replacement. String
The name of the Resource Group where the Spacecraft exists. Changing this forces a new resource to be created.
tags Map<String>
A mapping of tags to assign to the resource.
titleLine String
Title of the two line elements (TLE).
twoLineElements Changes to this property will trigger replacement. List<String>
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.

Supporting Types

BandwidthMhz This property is required. double
Bandwidth in Mhz.
CenterFrequencyMhz This property is required. double

Center frequency in Mhz.

Note: The value of center_frequency_mhz +/- bandwidth_mhz / 2 should fall in one of these ranges: Uplink/LHCP: [2025, 2120]; Uplink/Linear: [399, 403],[435, 438],[449, 451]; Uplink/RHCP: [399, 403],[435, 438],[449, 451],[2025, 2120]; Downlink/LHCP: [2200, 2300], [7500, 8400]; Downlink/Linear: [399, 403], [435, 438], [449, 451]; Downlink/Linear`: [399, 403], [435, 438], [449, 451], [2200, 2300], [7500, 8400]

Direction This property is required. string
Direction if the communication. Possible values are Uplink and Downlink.
Name This property is required. string
Name of the link.
Polarization This property is required. string
Polarization. Possible values are RHCP, LHCP, linearVertical and linearHorizontal.
BandwidthMhz This property is required. float64
Bandwidth in Mhz.
CenterFrequencyMhz This property is required. float64

Center frequency in Mhz.

Note: The value of center_frequency_mhz +/- bandwidth_mhz / 2 should fall in one of these ranges: Uplink/LHCP: [2025, 2120]; Uplink/Linear: [399, 403],[435, 438],[449, 451]; Uplink/RHCP: [399, 403],[435, 438],[449, 451],[2025, 2120]; Downlink/LHCP: [2200, 2300], [7500, 8400]; Downlink/Linear: [399, 403], [435, 438], [449, 451]; Downlink/Linear`: [399, 403], [435, 438], [449, 451], [2200, 2300], [7500, 8400]

Direction This property is required. string
Direction if the communication. Possible values are Uplink and Downlink.
Name This property is required. string
Name of the link.
Polarization This property is required. string
Polarization. Possible values are RHCP, LHCP, linearVertical and linearHorizontal.
bandwidthMhz This property is required. Double
Bandwidth in Mhz.
centerFrequencyMhz This property is required. Double

Center frequency in Mhz.

Note: The value of center_frequency_mhz +/- bandwidth_mhz / 2 should fall in one of these ranges: Uplink/LHCP: [2025, 2120]; Uplink/Linear: [399, 403],[435, 438],[449, 451]; Uplink/RHCP: [399, 403],[435, 438],[449, 451],[2025, 2120]; Downlink/LHCP: [2200, 2300], [7500, 8400]; Downlink/Linear: [399, 403], [435, 438], [449, 451]; Downlink/Linear`: [399, 403], [435, 438], [449, 451], [2200, 2300], [7500, 8400]

direction This property is required. String
Direction if the communication. Possible values are Uplink and Downlink.
name This property is required. String
Name of the link.
polarization This property is required. String
Polarization. Possible values are RHCP, LHCP, linearVertical and linearHorizontal.
bandwidthMhz This property is required. number
Bandwidth in Mhz.
centerFrequencyMhz This property is required. number

Center frequency in Mhz.

Note: The value of center_frequency_mhz +/- bandwidth_mhz / 2 should fall in one of these ranges: Uplink/LHCP: [2025, 2120]; Uplink/Linear: [399, 403],[435, 438],[449, 451]; Uplink/RHCP: [399, 403],[435, 438],[449, 451],[2025, 2120]; Downlink/LHCP: [2200, 2300], [7500, 8400]; Downlink/Linear: [399, 403], [435, 438], [449, 451]; Downlink/Linear`: [399, 403], [435, 438], [449, 451], [2200, 2300], [7500, 8400]

direction This property is required. string
Direction if the communication. Possible values are Uplink and Downlink.
name This property is required. string
Name of the link.
polarization This property is required. string
Polarization. Possible values are RHCP, LHCP, linearVertical and linearHorizontal.
bandwidth_mhz This property is required. float
Bandwidth in Mhz.
center_frequency_mhz This property is required. float

Center frequency in Mhz.

Note: The value of center_frequency_mhz +/- bandwidth_mhz / 2 should fall in one of these ranges: Uplink/LHCP: [2025, 2120]; Uplink/Linear: [399, 403],[435, 438],[449, 451]; Uplink/RHCP: [399, 403],[435, 438],[449, 451],[2025, 2120]; Downlink/LHCP: [2200, 2300], [7500, 8400]; Downlink/Linear: [399, 403], [435, 438], [449, 451]; Downlink/Linear`: [399, 403], [435, 438], [449, 451], [2200, 2300], [7500, 8400]

direction This property is required. str
Direction if the communication. Possible values are Uplink and Downlink.
name This property is required. str
Name of the link.
polarization This property is required. str
Polarization. Possible values are RHCP, LHCP, linearVertical and linearHorizontal.
bandwidthMhz This property is required. Number
Bandwidth in Mhz.
centerFrequencyMhz This property is required. Number

Center frequency in Mhz.

Note: The value of center_frequency_mhz +/- bandwidth_mhz / 2 should fall in one of these ranges: Uplink/LHCP: [2025, 2120]; Uplink/Linear: [399, 403],[435, 438],[449, 451]; Uplink/RHCP: [399, 403],[435, 438],[449, 451],[2025, 2120]; Downlink/LHCP: [2200, 2300], [7500, 8400]; Downlink/Linear: [399, 403], [435, 438], [449, 451]; Downlink/Linear`: [399, 403], [435, 438], [449, 451], [2200, 2300], [7500, 8400]

direction This property is required. String
Direction if the communication. Possible values are Uplink and Downlink.
name This property is required. String
Name of the link.
polarization This property is required. String
Polarization. Possible values are RHCP, LHCP, linearVertical and linearHorizontal.

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
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Azure Classic pulumi/pulumi-azure
License
Apache-2.0
Notes
This Pulumi package is based on the azurerm Terraform Provider.