1. Packages
  2. Azure Native
  3. API Docs
  4. orbital
  5. Spacecraft
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

azure-native.orbital.Spacecraft

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 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",
        });
    
    });
    
    package main
    
    import (
    	"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
    	})
    }
    
    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());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    spacecraft = azure_native.orbital.Spacecraft("spacecraft",
        links=[
            azure_native.orbital.SpacecraftLinkArgs(
                bandwidth_m_hz=2,
                center_frequency_m_hz=2250,
                direction=azure_native.orbital.Direction.UPLINK,
                name="uplink_lhcp1",
                polarization=azure_native.orbital.Polarization.LHCP,
            ),
            azure_native.orbital.SpacecraftLinkArgs(
                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")
    
    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",
    });
    
    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
    

    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 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.

    Example

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

    var spacecraftResource = new AzureNative.Orbital.Spacecraft("spacecraftResource", new()
    {
        Links = new[]
        {
            new AzureNative.Orbital.Inputs.SpacecraftLinkArgs
            {
                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" },
        },
    });
    
    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"),
    },
    },
    ResourceGroupName: pulumi.String("string"),
    TitleLine: pulumi.String("string"),
    TleLine1: pulumi.String("string"),
    TleLine2: pulumi.String("string"),
    Location: pulumi.String("string"),
    NoradId: pulumi.String("string"),
    SpacecraftName: 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())
        .resourceGroupName("string")
        .titleLine("string")
        .tleLine1("string")
        .tleLine2("string")
        .location("string")
        .noradId("string")
        .spacecraftName("string")
        .tags(Map.of("string", "string"))
        .build());
    
    spacecraft_resource = azure_native.orbital.Spacecraft("spacecraftResource",
        links=[azure_native.orbital.SpacecraftLinkArgs(
            bandwidth_m_hz=0,
            center_frequency_m_hz=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",
        })
    
    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",
        },
    });
    
    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
    

    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<Pulumi.AzureNative.Orbital.Inputs.SpacecraftLink>
    Immutable list of Spacecraft links.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    TitleLine string
    Title line of the two-line element set (TLE).
    TleLine1 string
    Line 1 of the two-line element set (TLE).
    TleLine2 string
    Line 2 of the two-line element set (TLE).
    Location string
    The geo-location where the resource lives
    NoradId string
    NORAD ID of the spacecraft.
    SpacecraftName string
    Spacecraft ID.
    Tags Dictionary<string, string>
    Resource tags.
    Links []SpacecraftLinkArgs
    Immutable list of Spacecraft links.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    TitleLine string
    Title line of the two-line element set (TLE).
    TleLine1 string
    Line 1 of the two-line element set (TLE).
    TleLine2 string
    Line 2 of the two-line element set (TLE).
    Location string
    The geo-location where the resource lives
    NoradId string
    NORAD ID of the spacecraft.
    SpacecraftName string
    Spacecraft ID.
    Tags map[string]string
    Resource tags.
    links List<SpacecraftLink>
    Immutable list of Spacecraft links.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    titleLine String
    Title line of the two-line element set (TLE).
    tleLine1 String
    Line 1 of the two-line element set (TLE).
    tleLine2 String
    Line 2 of the two-line element set (TLE).
    location String
    The geo-location where the resource lives
    noradId String
    NORAD ID of the spacecraft.
    spacecraftName String
    Spacecraft ID.
    tags Map<String,String>
    Resource tags.
    links SpacecraftLink[]
    Immutable list of Spacecraft links.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    titleLine string
    Title line of the two-line element set (TLE).
    tleLine1 string
    Line 1 of the two-line element set (TLE).
    tleLine2 string
    Line 2 of the two-line element set (TLE).
    location string
    The geo-location where the resource lives
    noradId string
    NORAD ID of the spacecraft.
    spacecraftName string
    Spacecraft ID.
    tags {[key: string]: string}
    Resource tags.
    links Sequence[SpacecraftLinkArgs]
    Immutable list of Spacecraft links.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    title_line str
    Title line of the two-line element set (TLE).
    tle_line1 str
    Line 1 of the two-line element set (TLE).
    tle_line2 str
    Line 2 of the two-line element set (TLE).
    location str
    The geo-location where the resource lives
    norad_id str
    NORAD ID of the spacecraft.
    spacecraft_name str
    Spacecraft ID.
    tags Mapping[str, str]
    Resource tags.
    links List<Property Map>
    Immutable list of Spacecraft links.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    titleLine String
    Title line of the two-line element set (TLE).
    tleLine1 String
    Line 1 of the two-line element set (TLE).
    tleLine2 String
    Line 2 of the two-line element set (TLE).
    location String
    The geo-location where the resource lives
    noradId String
    NORAD ID of the spacecraft.
    spacecraftName 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 string
    Date of authorization expiration.
    GroundStation string
    Groundstation name.
    ExpirationDate string
    Date of authorization expiration.
    GroundStation string
    Groundstation name.
    expirationDate String
    Date of authorization expiration.
    groundStation String
    Groundstation name.
    expirationDate string
    Date of authorization expiration.
    groundStation string
    Groundstation name.
    expiration_date str
    Date of authorization expiration.
    ground_station str
    Groundstation name.
    expirationDate String
    Date of authorization expiration.
    groundStation 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 double
    Bandwidth in MHz.
    CenterFrequencyMHz double
    Center Frequency in MHz.
    Direction string | Pulumi.AzureNative.Orbital.Direction
    Direction (Uplink or Downlink).
    Name string
    Link name.
    Polarization string | Pulumi.AzureNative.Orbital.Polarization
    Polarization. e.g. (RHCP, LHCP).
    BandwidthMHz float64
    Bandwidth in MHz.
    CenterFrequencyMHz float64
    Center Frequency in MHz.
    Direction string | Direction
    Direction (Uplink or Downlink).
    Name string
    Link name.
    Polarization string | Polarization
    Polarization. e.g. (RHCP, LHCP).
    bandwidthMHz Double
    Bandwidth in MHz.
    centerFrequencyMHz Double
    Center Frequency in MHz.
    direction String | Direction
    Direction (Uplink or Downlink).
    name String
    Link name.
    polarization String | Polarization
    Polarization. e.g. (RHCP, LHCP).
    bandwidthMHz number
    Bandwidth in MHz.
    centerFrequencyMHz number
    Center Frequency in MHz.
    direction string | Direction
    Direction (Uplink or Downlink).
    name string
    Link name.
    polarization string | Polarization
    Polarization. e.g. (RHCP, LHCP).
    bandwidth_m_hz float
    Bandwidth in MHz.
    center_frequency_m_hz float
    Center Frequency in MHz.
    direction str | Direction
    Direction (Uplink or Downlink).
    name str
    Link name.
    polarization str | Polarization
    Polarization. e.g. (RHCP, LHCP).
    bandwidthMHz Number
    Bandwidth in MHz.
    centerFrequencyMHz Number
    Center Frequency in MHz.
    direction String | "Uplink" | "Downlink"
    Direction (Uplink or Downlink).
    name String
    Link name.
    polarization String | "RHCP" | "LHCP" | "linearVertical" | "linearHorizontal"
    Polarization. e.g. (RHCP, LHCP).

    SpacecraftLinkResponse, SpacecraftLinkResponseArgs

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

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi