1. Packages
  2. Azure Native v2
  3. API Docs
  4. orbital
  5. Spacecraft
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.orbital.Spacecraft

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

Customer creates a spacecraft resource to schedule a contact. Azure REST API version: 2022-11-01.

Other available API versions: 2022-03-01.

Example Usage

Create a spacecraft

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var spacecraft = new AzureNative.Orbital.Spacecraft("spacecraft", new()
    {
        Links = new[]
        {
            new AzureNative.Orbital.Inputs.SpacecraftLinkArgs
            {
                BandwidthMHz = 2,
                CenterFrequencyMHz = 2250,
                Direction = AzureNative.Orbital.Direction.Uplink,
                Name = "uplink_lhcp1",
                Polarization = AzureNative.Orbital.Polarization.LHCP,
            },
            new AzureNative.Orbital.Inputs.SpacecraftLinkArgs
            {
                BandwidthMHz = 15,
                CenterFrequencyMHz = 8160,
                Direction = AzureNative.Orbital.Direction.Downlink,
                Name = "downlink_rhcp1",
                Polarization = AzureNative.Orbital.Polarization.RHCP,
            },
        },
        Location = "eastus2",
        NoradId = "36411",
        ResourceGroupName = "contoso-Rgp",
        SpacecraftName = "CONTOSO_SAT",
        TitleLine = "CONTOSO_SAT",
        TleLine1 = "1 27424U 02022A   22167.05119303  .00000638  00000+0  15103-3 0  9994",
        TleLine2 = "2 27424  98.2477 108.9546 0000928  92.9194 327.0802 14.57300770 69982",
    });

});
Copy
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.NewSpacecraft(ctx, "spacecraft", &orbital.SpacecraftArgs{
			Links: orbital.SpacecraftLinkArray{
				&orbital.SpacecraftLinkArgs{
					BandwidthMHz:       pulumi.Float64(2),
					CenterFrequencyMHz: pulumi.Float64(2250),
					Direction:          pulumi.String(orbital.DirectionUplink),
					Name:               pulumi.String("uplink_lhcp1"),
					Polarization:       pulumi.String(orbital.PolarizationLHCP),
				},
				&orbital.SpacecraftLinkArgs{
					BandwidthMHz:       pulumi.Float64(15),
					CenterFrequencyMHz: pulumi.Float64(8160),
					Direction:          pulumi.String(orbital.DirectionDownlink),
					Name:               pulumi.String("downlink_rhcp1"),
					Polarization:       pulumi.String(orbital.PolarizationRHCP),
				},
			},
			Location:          pulumi.String("eastus2"),
			NoradId:           pulumi.String("36411"),
			ResourceGroupName: pulumi.String("contoso-Rgp"),
			SpacecraftName:    pulumi.String("CONTOSO_SAT"),
			TitleLine:         pulumi.String("CONTOSO_SAT"),
			TleLine1:          pulumi.String("1 27424U 02022A   22167.05119303  .00000638  00000+0  15103-3 0  9994"),
			TleLine2:          pulumi.String("2 27424  98.2477 108.9546 0000928  92.9194 327.0802 14.57300770 69982"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.orbital.Spacecraft;
import com.pulumi.azurenative.orbital.SpacecraftArgs;
import com.pulumi.azurenative.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 spacecraft = new Spacecraft("spacecraft", SpacecraftArgs.builder()
            .links(            
                SpacecraftLinkArgs.builder()
                    .bandwidthMHz(2)
                    .centerFrequencyMHz(2250)
                    .direction("Uplink")
                    .name("uplink_lhcp1")
                    .polarization("LHCP")
                    .build(),
                SpacecraftLinkArgs.builder()
                    .bandwidthMHz(15)
                    .centerFrequencyMHz(8160)
                    .direction("Downlink")
                    .name("downlink_rhcp1")
                    .polarization("RHCP")
                    .build())
            .location("eastus2")
            .noradId("36411")
            .resourceGroupName("contoso-Rgp")
            .spacecraftName("CONTOSO_SAT")
            .titleLine("CONTOSO_SAT")
            .tleLine1("1 27424U 02022A   22167.05119303  .00000638  00000+0  15103-3 0  9994")
            .tleLine2("2 27424  98.2477 108.9546 0000928  92.9194 327.0802 14.57300770 69982")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const spacecraft = new azure_native.orbital.Spacecraft("spacecraft", {
    links: [
        {
            bandwidthMHz: 2,
            centerFrequencyMHz: 2250,
            direction: azure_native.orbital.Direction.Uplink,
            name: "uplink_lhcp1",
            polarization: azure_native.orbital.Polarization.LHCP,
        },
        {
            bandwidthMHz: 15,
            centerFrequencyMHz: 8160,
            direction: azure_native.orbital.Direction.Downlink,
            name: "downlink_rhcp1",
            polarization: azure_native.orbital.Polarization.RHCP,
        },
    ],
    location: "eastus2",
    noradId: "36411",
    resourceGroupName: "contoso-Rgp",
    spacecraftName: "CONTOSO_SAT",
    titleLine: "CONTOSO_SAT",
    tleLine1: "1 27424U 02022A   22167.05119303  .00000638  00000+0  15103-3 0  9994",
    tleLine2: "2 27424  98.2477 108.9546 0000928  92.9194 327.0802 14.57300770 69982",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

spacecraft = azure_native.orbital.Spacecraft("spacecraft",
    links=[
        {
            "bandwidth_m_hz": 2,
            "center_frequency_m_hz": 2250,
            "direction": azure_native.orbital.Direction.UPLINK,
            "name": "uplink_lhcp1",
            "polarization": azure_native.orbital.Polarization.LHCP,
        },
        {
            "bandwidth_m_hz": 15,
            "center_frequency_m_hz": 8160,
            "direction": azure_native.orbital.Direction.DOWNLINK,
            "name": "downlink_rhcp1",
            "polarization": azure_native.orbital.Polarization.RHCP,
        },
    ],
    location="eastus2",
    norad_id="36411",
    resource_group_name="contoso-Rgp",
    spacecraft_name="CONTOSO_SAT",
    title_line="CONTOSO_SAT",
    tle_line1="1 27424U 02022A   22167.05119303  .00000638  00000+0  15103-3 0  9994",
    tle_line2="2 27424  98.2477 108.9546 0000928  92.9194 327.0802 14.57300770 69982")
Copy
resources:
  spacecraft:
    type: azure-native:orbital:Spacecraft
    properties:
      links:
        - bandwidthMHz: 2
          centerFrequencyMHz: 2250
          direction: Uplink
          name: uplink_lhcp1
          polarization: LHCP
        - bandwidthMHz: 15
          centerFrequencyMHz: 8160
          direction: Downlink
          name: downlink_rhcp1
          polarization: RHCP
      location: eastus2
      noradId: '36411'
      resourceGroupName: contoso-Rgp
      spacecraftName: CONTOSO_SAT
      titleLine: CONTOSO_SAT
      tleLine1: 1 27424U 02022A   22167.05119303  .00000638  00000+0  15103-3 0  9994
      tleLine2: 2 27424  98.2477 108.9546 0000928  92.9194 327.0802 14.57300770 69982
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,
               resource_group_name: Optional[str] = None,
               title_line: Optional[str] = None,
               tle_line1: Optional[str] = None,
               tle_line2: Optional[str] = None,
               location: Optional[str] = None,
               norad_id: Optional[str] = None,
               spacecraft_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-native: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 AzureNative.Orbital.Spacecraft("spacecraftResource", new()
{
    Links = new[]
    {
        
        {
            { "bandwidthMHz", 0 },
            { "centerFrequencyMHz", 0 },
            { "direction", "string" },
            { "name", "string" },
            { "polarization", "string" },
        },
    },
    ResourceGroupName = "string",
    TitleLine = "string",
    TleLine1 = "string",
    TleLine2 = "string",
    Location = "string",
    NoradId = "string",
    SpacecraftName = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := orbital.NewSpacecraft(ctx, "spacecraftResource", &orbital.SpacecraftArgs{
	Links: []map[string]interface{}{
		map[string]interface{}{
			"bandwidthMHz":       0,
			"centerFrequencyMHz": 0,
			"direction":          "string",
			"name":               "string",
			"polarization":       "string",
		},
	},
	ResourceGroupName: "string",
	TitleLine:         "string",
	TleLine1:          "string",
	TleLine2:          "string",
	Location:          "string",
	NoradId:           "string",
	SpacecraftName:    "string",
	Tags: map[string]interface{}{
		"string": "string",
	},
})
Copy
var spacecraftResource = new Spacecraft("spacecraftResource", SpacecraftArgs.builder()
    .links(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .resourceGroupName("string")
    .titleLine("string")
    .tleLine1("string")
    .tleLine2("string")
    .location("string")
    .noradId("string")
    .spacecraftName("string")
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
spacecraft_resource = azure_native.orbital.Spacecraft("spacecraftResource",
    links=[{
        bandwidthMHz: 0,
        centerFrequencyMHz: 0,
        direction: string,
        name: string,
        polarization: string,
    }],
    resource_group_name=string,
    title_line=string,
    tle_line1=string,
    tle_line2=string,
    location=string,
    norad_id=string,
    spacecraft_name=string,
    tags={
        string: string,
    })
Copy
const spacecraftResource = new azure_native.orbital.Spacecraft("spacecraftResource", {
    links: [{
        bandwidthMHz: 0,
        centerFrequencyMHz: 0,
        direction: "string",
        name: "string",
        polarization: "string",
    }],
    resourceGroupName: "string",
    titleLine: "string",
    tleLine1: "string",
    tleLine2: "string",
    location: "string",
    noradId: "string",
    spacecraftName: "string",
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:orbital:Spacecraft
properties:
    links:
        - bandwidthMHz: 0
          centerFrequencyMHz: 0
          direction: string
          name: string
          polarization: string
    location: string
    noradId: string
    resourceGroupName: string
    spacecraftName: string
    tags:
        string: string
    titleLine: string
    tleLine1: string
    tleLine2: 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<Pulumi.AzureNative.Orbital.Inputs.SpacecraftLink>
Immutable list of Spacecraft links.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
TitleLine This property is required. string
Title line of the two-line element set (TLE).
TleLine1 This property is required. string
Line 1 of the two-line element set (TLE).
TleLine2 This property is required. string
Line 2 of the two-line element set (TLE).
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
NoradId string
NORAD ID of the spacecraft.
SpacecraftName Changes to this property will trigger replacement. string
Spacecraft ID.
Tags Dictionary<string, string>
Resource tags.
Links
This property is required.
Changes to this property will trigger replacement.
[]SpacecraftLinkArgs
Immutable list of Spacecraft links.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
TitleLine This property is required. string
Title line of the two-line element set (TLE).
TleLine1 This property is required. string
Line 1 of the two-line element set (TLE).
TleLine2 This property is required. string
Line 2 of the two-line element set (TLE).
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
NoradId string
NORAD ID of the spacecraft.
SpacecraftName Changes to this property will trigger replacement. string
Spacecraft ID.
Tags map[string]string
Resource tags.
links
This property is required.
Changes to this property will trigger replacement.
List<SpacecraftLink>
Immutable list of Spacecraft links.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
titleLine This property is required. String
Title line of the two-line element set (TLE).
tleLine1 This property is required. String
Line 1 of the two-line element set (TLE).
tleLine2 This property is required. String
Line 2 of the two-line element set (TLE).
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
noradId String
NORAD ID of the spacecraft.
spacecraftName Changes to this property will trigger replacement. String
Spacecraft ID.
tags Map<String,String>
Resource tags.
links
This property is required.
Changes to this property will trigger replacement.
SpacecraftLink[]
Immutable list of Spacecraft links.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
titleLine This property is required. string
Title line of the two-line element set (TLE).
tleLine1 This property is required. string
Line 1 of the two-line element set (TLE).
tleLine2 This property is required. string
Line 2 of the two-line element set (TLE).
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
noradId string
NORAD ID of the spacecraft.
spacecraftName Changes to this property will trigger replacement. string
Spacecraft ID.
tags {[key: string]: string}
Resource tags.
links
This property is required.
Changes to this property will trigger replacement.
Sequence[SpacecraftLinkArgs]
Immutable list of Spacecraft links.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
title_line This property is required. str
Title line of the two-line element set (TLE).
tle_line1 This property is required. str
Line 1 of the two-line element set (TLE).
tle_line2 This property is required. str
Line 2 of the two-line element set (TLE).
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
norad_id str
NORAD ID of the spacecraft.
spacecraft_name Changes to this property will trigger replacement. str
Spacecraft ID.
tags Mapping[str, str]
Resource tags.
links
This property is required.
Changes to this property will trigger replacement.
List<Property Map>
Immutable list of Spacecraft links.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
titleLine This property is required. String
Title line of the two-line element set (TLE).
tleLine1 This property is required. String
Line 1 of the two-line element set (TLE).
tleLine2 This property is required. String
Line 2 of the two-line element set (TLE).
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
noradId String
NORAD ID of the spacecraft.
spacecraftName Changes to this property will trigger replacement. String
Spacecraft ID.
tags Map<String>
Resource tags.

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.
Name string
The name of the resource
SystemData Pulumi.AzureNative.Orbital.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

AuthorizedGroundstationResponse
, AuthorizedGroundstationResponseArgs

ExpirationDate This property is required. string
Date of authorization expiration.
GroundStation This property is required. string
Groundstation name.
ExpirationDate This property is required. string
Date of authorization expiration.
GroundStation This property is required. string
Groundstation name.
expirationDate This property is required. String
Date of authorization expiration.
groundStation This property is required. String
Groundstation name.
expirationDate This property is required. string
Date of authorization expiration.
groundStation This property is required. string
Groundstation name.
expiration_date This property is required. str
Date of authorization expiration.
ground_station This property is required. str
Groundstation name.
expirationDate This property is required. String
Date of authorization expiration.
groundStation This property is required. String
Groundstation name.

Direction
, DirectionArgs

Uplink
Uplink
Downlink
Downlink
DirectionUplink
Uplink
DirectionDownlink
Downlink
Uplink
Uplink
Downlink
Downlink
Uplink
Uplink
Downlink
Downlink
UPLINK
Uplink
DOWNLINK
Downlink
"Uplink"
Uplink
"Downlink"
Downlink

Polarization
, PolarizationArgs

RHCP
RHCP
LHCP
LHCP
LinearVertical
linearVertical
LinearHorizontal
linearHorizontal
PolarizationRHCP
RHCP
PolarizationLHCP
LHCP
PolarizationLinearVertical
linearVertical
PolarizationLinearHorizontal
linearHorizontal
RHCP
RHCP
LHCP
LHCP
LinearVertical
linearVertical
LinearHorizontal
linearHorizontal
RHCP
RHCP
LHCP
LHCP
LinearVertical
linearVertical
LinearHorizontal
linearHorizontal
RHCP
RHCP
LHCP
LHCP
LINEAR_VERTICAL
linearVertical
LINEAR_HORIZONTAL
linearHorizontal
"RHCP"
RHCP
"LHCP"
LHCP
"linearVertical"
linearVertical
"linearHorizontal"
linearHorizontal
BandwidthMHz This property is required. double
Bandwidth in MHz.
CenterFrequencyMHz This property is required. double
Center Frequency in MHz.
Direction This property is required. string | Pulumi.AzureNative.Orbital.Direction
Direction (Uplink or Downlink).
Name This property is required. string
Link name.
Polarization This property is required. string | Pulumi.AzureNative.Orbital.Polarization
Polarization. e.g. (RHCP, LHCP).
BandwidthMHz This property is required. float64
Bandwidth in MHz.
CenterFrequencyMHz This property is required. float64
Center Frequency in MHz.
Direction This property is required. string | Direction
Direction (Uplink or Downlink).
Name This property is required. string
Link name.
Polarization This property is required. string | Polarization
Polarization. e.g. (RHCP, LHCP).
bandwidthMHz This property is required. Double
Bandwidth in MHz.
centerFrequencyMHz This property is required. Double
Center Frequency in MHz.
direction This property is required. String | Direction
Direction (Uplink or Downlink).
name This property is required. String
Link name.
polarization This property is required. String | Polarization
Polarization. e.g. (RHCP, LHCP).
bandwidthMHz This property is required. number
Bandwidth in MHz.
centerFrequencyMHz This property is required. number
Center Frequency in MHz.
direction This property is required. string | Direction
Direction (Uplink or Downlink).
name This property is required. string
Link name.
polarization This property is required. string | Polarization
Polarization. e.g. (RHCP, LHCP).
bandwidth_m_hz This property is required. float
Bandwidth in MHz.
center_frequency_m_hz This property is required. float
Center Frequency in MHz.
direction This property is required. str | Direction
Direction (Uplink or Downlink).
name This property is required. str
Link name.
polarization This property is required. str | Polarization
Polarization. e.g. (RHCP, LHCP).
bandwidthMHz This property is required. Number
Bandwidth in MHz.
centerFrequencyMHz This property is required. Number
Center Frequency in MHz.
direction This property is required. String | "Uplink" | "Downlink"
Direction (Uplink or Downlink).
name This property is required. String
Link name.
polarization This property is required. String | "RHCP" | "LHCP" | "linearVertical" | "linearHorizontal"
Polarization. e.g. (RHCP, LHCP).

SpacecraftLinkResponse
, SpacecraftLinkResponseArgs

Authorizations This property is required. List<Pulumi.AzureNative.Orbital.Inputs.AuthorizedGroundstationResponse>
Authorized Ground Stations
BandwidthMHz This property is required. double
Bandwidth in MHz.
CenterFrequencyMHz This property is required. double
Center Frequency in MHz.
Direction This property is required. string
Direction (Uplink or Downlink).
Name This property is required. string
Link name.
Polarization This property is required. string
Polarization. e.g. (RHCP, LHCP).
Authorizations This property is required. []AuthorizedGroundstationResponse
Authorized Ground Stations
BandwidthMHz This property is required. float64
Bandwidth in MHz.
CenterFrequencyMHz This property is required. float64
Center Frequency in MHz.
Direction This property is required. string
Direction (Uplink or Downlink).
Name This property is required. string
Link name.
Polarization This property is required. string
Polarization. e.g. (RHCP, LHCP).
authorizations This property is required. List<AuthorizedGroundstationResponse>
Authorized Ground Stations
bandwidthMHz This property is required. Double
Bandwidth in MHz.
centerFrequencyMHz This property is required. Double
Center Frequency in MHz.
direction This property is required. String
Direction (Uplink or Downlink).
name This property is required. String
Link name.
polarization This property is required. String
Polarization. e.g. (RHCP, LHCP).
authorizations This property is required. AuthorizedGroundstationResponse[]
Authorized Ground Stations
bandwidthMHz This property is required. number
Bandwidth in MHz.
centerFrequencyMHz This property is required. number
Center Frequency in MHz.
direction This property is required. string
Direction (Uplink or Downlink).
name This property is required. string
Link name.
polarization This property is required. string
Polarization. e.g. (RHCP, LHCP).
authorizations This property is required. Sequence[AuthorizedGroundstationResponse]
Authorized Ground Stations
bandwidth_m_hz This property is required. float
Bandwidth in MHz.
center_frequency_m_hz This property is required. float
Center Frequency in MHz.
direction This property is required. str
Direction (Uplink or Downlink).
name This property is required. str
Link name.
polarization This property is required. str
Polarization. e.g. (RHCP, LHCP).
authorizations This property is required. List<Property Map>
Authorized Ground Stations
bandwidthMHz This property is required. Number
Bandwidth in MHz.
centerFrequencyMHz This property is required. Number
Center Frequency in MHz.
direction This property is required. String
Direction (Uplink or Downlink).
name This property is required. String
Link name.
polarization This property is required. String
Polarization. e.g. (RHCP, LHCP).

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

Import

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

$ pulumi import azure-native:orbital:Spacecraft CONTOSO_SAT /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Orbital/spacecrafts/{spacecraftName} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi