We recommend using Azure Native.
azure.orbital.Spacecraft
Explore with Pulumi AI
Manages a Spacecraft.
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",
},
});
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=[azure.orbital.SpacecraftLinkArgs(
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",
})
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v5/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
})
}
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" },
},
});
});
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());
}
}
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
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 string
- The unique name of the resource.
- args SpacecraftArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args 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 string
- The unique name of the resource.
- args SpacecraftArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SpacecraftArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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" },
},
});
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"),
},
})
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());
spacecraft_resource = azure.orbital.Spacecraft("spacecraftResource",
links=[azure.orbital.SpacecraftLinkArgs(
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",
})
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",
},
});
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
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
The Spacecraft resource accepts the following input properties:
- Links
List<Spacecraft
Link> - A
links
block as defined below. Changing this forces a new resource to be created. - Norad
Id string - NORAD ID of the Spacecraft.
- Resource
Group stringName - The name of the Resource Group where the Spacecraft exists. Changing this forces a new resource to be created.
- Title
Line string - Title of the two line elements (TLE).
- Two
Line List<string>Elements - 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 string
- The location where the Spacecraft exists. Changing this forces a new resource to be created.
- Name string
- The name of the Spacecraft. Changing this forces a new resource to be created.
- Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Links
[]Spacecraft
Link Args - A
links
block as defined below. Changing this forces a new resource to be created. - Norad
Id string - NORAD ID of the Spacecraft.
- Resource
Group stringName - The name of the Resource Group where the Spacecraft exists. Changing this forces a new resource to be created.
- Title
Line string - Title of the two line elements (TLE).
- Two
Line []stringElements - 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 string
- The location where the Spacecraft exists. Changing this forces a new resource to be created.
- Name string
- The name of the Spacecraft. Changing this forces a new resource to be created.
- map[string]string
- A mapping of tags to assign to the resource.
- links
List<Spacecraft
Link> - A
links
block as defined below. Changing this forces a new resource to be created. - norad
Id String - NORAD ID of the Spacecraft.
- resource
Group StringName - The name of the Resource Group where the Spacecraft exists. Changing this forces a new resource to be created.
- title
Line String - Title of the two line elements (TLE).
- two
Line List<String>Elements - 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 String
- The location where the Spacecraft exists. Changing this forces a new resource to be created.
- name String
- The name of the Spacecraft. Changing this forces a new resource to be created.
- Map<String,String>
- A mapping of tags to assign to the resource.
- links
Spacecraft
Link[] - A
links
block as defined below. Changing this forces a new resource to be created. - norad
Id string - NORAD ID of the Spacecraft.
- resource
Group stringName - The name of the Resource Group where the Spacecraft exists. Changing this forces a new resource to be created.
- title
Line string - Title of the two line elements (TLE).
- two
Line string[]Elements - 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 string
- The location where the Spacecraft exists. Changing this forces a new resource to be created.
- name string
- The name of the Spacecraft. Changing this forces a new resource to be created.
- {[key: string]: string}
- A mapping of tags to assign to the resource.
- links
Sequence[Spacecraft
Link Args] - A
links
block as defined below. Changing this forces a new resource to be created. - norad_
id str - NORAD ID of the Spacecraft.
- resource_
group_ strname - The name of the Resource Group where the Spacecraft exists. Changing this forces a new resource to be created.
- title_
line str - Title of the two line elements (TLE).
- two_
line_ Sequence[str]elements - 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 str
- The location where the Spacecraft exists. Changing this forces a new resource to be created.
- name str
- The name of the Spacecraft. Changing this forces a new resource to be created.
- Mapping[str, str]
- A mapping of tags to assign to the resource.
- links List<Property Map>
- A
links
block as defined below. Changing this forces a new resource to be created. - norad
Id String - NORAD ID of the Spacecraft.
- resource
Group StringName - The name of the Resource Group where the Spacecraft exists. Changing this forces a new resource to be created.
- title
Line String - Title of the two line elements (TLE).
- two
Line List<String>Elements - 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 String
- The location where the Spacecraft exists. Changing this forces a new resource to be created.
- name String
- The name of the Spacecraft. Changing this forces a new resource to be created.
- 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)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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.
- Links
List<Spacecraft
Link> - A
links
block as defined below. Changing this forces a new resource to be created. - Location string
- The location where the Spacecraft exists. Changing this forces a new resource to be created.
- Name string
- The name of the Spacecraft. Changing this forces a new resource to be created.
- Norad
Id string - NORAD ID of the Spacecraft.
- Resource
Group stringName - The name of the Resource Group where the Spacecraft exists. Changing this forces a new resource to be created.
- Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Title
Line string - Title of the two line elements (TLE).
- Two
Line List<string>Elements - 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
[]Spacecraft
Link Args - A
links
block as defined below. Changing this forces a new resource to be created. - Location string
- The location where the Spacecraft exists. Changing this forces a new resource to be created.
- Name string
- The name of the Spacecraft. Changing this forces a new resource to be created.
- Norad
Id string - NORAD ID of the Spacecraft.
- Resource
Group stringName - The name of the Resource Group where the Spacecraft exists. Changing this forces a new resource to be created.
- map[string]string
- A mapping of tags to assign to the resource.
- Title
Line string - Title of the two line elements (TLE).
- Two
Line []stringElements - 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
List<Spacecraft
Link> - A
links
block as defined below. Changing this forces a new resource to be created. - location String
- The location where the Spacecraft exists. Changing this forces a new resource to be created.
- name String
- The name of the Spacecraft. Changing this forces a new resource to be created.
- norad
Id String - NORAD ID of the Spacecraft.
- resource
Group StringName - The name of the Resource Group where the Spacecraft exists. Changing this forces a new resource to be created.
- Map<String,String>
- A mapping of tags to assign to the resource.
- title
Line String - Title of the two line elements (TLE).
- two
Line List<String>Elements - 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
Spacecraft
Link[] - A
links
block as defined below. Changing this forces a new resource to be created. - location string
- The location where the Spacecraft exists. Changing this forces a new resource to be created.
- name string
- The name of the Spacecraft. Changing this forces a new resource to be created.
- norad
Id string - NORAD ID of the Spacecraft.
- resource
Group stringName - The name of the Resource Group where the Spacecraft exists. Changing this forces a new resource to be created.
- {[key: string]: string}
- A mapping of tags to assign to the resource.
- title
Line string - Title of the two line elements (TLE).
- two
Line string[]Elements - 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
Sequence[Spacecraft
Link Args] - A
links
block as defined below. Changing this forces a new resource to be created. - location str
- The location where the Spacecraft exists. Changing this forces a new resource to be created.
- name 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_ strname - The name of the Resource Group where the Spacecraft exists. Changing this forces a new resource to be created.
- Mapping[str, str]
- A mapping of tags to assign to the resource.
- title_
line str - Title of the two line elements (TLE).
- two_
line_ Sequence[str]elements - 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 List<Property Map>
- A
links
block as defined below. Changing this forces a new resource to be created. - location String
- The location where the Spacecraft exists. Changing this forces a new resource to be created.
- name String
- The name of the Spacecraft. Changing this forces a new resource to be created.
- norad
Id String - NORAD ID of the Spacecraft.
- resource
Group StringName - The name of the Resource Group where the Spacecraft exists. Changing this forces a new resource to be created.
- Map<String>
- A mapping of tags to assign to the resource.
- title
Line String - Title of the two line elements (TLE).
- two
Line List<String>Elements - 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
SpacecraftLink, SpacecraftLinkArgs
- Bandwidth
Mhz double - Bandwidth in Mhz.
- Center
Frequency doubleMhz 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 string
- Direction if the communication. Possible values are
Uplink
andDownlink
. - Name string
- Name of the link.
- Polarization string
- Polarization. Possible values are
RHCP
,LHCP
,linearVertical
andlinearHorizontal
.
- Bandwidth
Mhz float64 - Bandwidth in Mhz.
- Center
Frequency float64Mhz 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 string
- Direction if the communication. Possible values are
Uplink
andDownlink
. - Name string
- Name of the link.
- Polarization string
- Polarization. Possible values are
RHCP
,LHCP
,linearVertical
andlinearHorizontal
.
- bandwidth
Mhz Double - Bandwidth in Mhz.
- center
Frequency DoubleMhz 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 String
- Direction if the communication. Possible values are
Uplink
andDownlink
. - name String
- Name of the link.
- polarization String
- Polarization. Possible values are
RHCP
,LHCP
,linearVertical
andlinearHorizontal
.
- bandwidth
Mhz number - Bandwidth in Mhz.
- center
Frequency numberMhz 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 string
- Direction if the communication. Possible values are
Uplink
andDownlink
. - name string
- Name of the link.
- polarization string
- Polarization. Possible values are
RHCP
,LHCP
,linearVertical
andlinearHorizontal
.
- bandwidth_
mhz float - Bandwidth in Mhz.
- center_
frequency_ floatmhz 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 str
- Direction if the communication. Possible values are
Uplink
andDownlink
. - name str
- Name of the link.
- polarization str
- Polarization. Possible values are
RHCP
,LHCP
,linearVertical
andlinearHorizontal
.
- bandwidth
Mhz Number - Bandwidth in Mhz.
- center
Frequency NumberMhz 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 String
- Direction if the communication. Possible values are
Uplink
andDownlink
. - name String
- Name of the link.
- polarization String
- Polarization. Possible values are
RHCP
,LHCP
,linearVertical
andlinearHorizontal
.
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
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.