azure-native.orbital.Spacecraft
Customer creates a spacecraft resource to schedule a contact.
Uses Azure REST API version 2022-11-01. In version 2.x of the Azure Native provider, it used API version 2022-11-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 (
	orbital "github.com/pulumi/pulumi-azure-native-sdk/orbital/v3"
	"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.0)
                    .centerFrequencyMHz(2250.0)
                    .direction("Uplink")
                    .name("uplink_lhcp1")
                    .polarization("LHCP")
                    .build(),
                SpacecraftLinkArgs.builder()
                    .bandwidthMHz(15.0)
                    .centerFrequencyMHz(8160.0)
                    .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 * 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",
});
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")
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.
Constructor 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.0)
        .centerFrequencyMHz(0.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=[{
        "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
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
List<Pulumi.Azure Native. Orbital. Inputs. Spacecraft Link> 
- Immutable list of Spacecraft links.
- ResourceGroup stringName 
- 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.
- Dictionary<string, string>
- Resource tags.
- Links
[]SpacecraftLink Args 
- Immutable list of Spacecraft links.
- ResourceGroup stringName 
- 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.
- map[string]string
- Resource tags.
- links
List<SpacecraftLink> 
- Immutable list of Spacecraft links.
- resourceGroup StringName 
- 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.
- Map<String,String>
- Resource tags.
- links
SpacecraftLink[] 
- Immutable list of Spacecraft links.
- resourceGroup stringName 
- 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.
- {[key: string]: string}
- Resource tags.
- links
Sequence[SpacecraftLink Args] 
- Immutable list of Spacecraft links.
- resource_group_ strname 
- 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.
- Mapping[str, str]
- Resource tags.
- links List<Property Map>
- Immutable list of Spacecraft links.
- resourceGroup StringName 
- 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.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the Spacecraft resource produces the following output properties:
- AzureApi stringVersion 
- The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData Pulumi.Azure Native. Orbital. Outputs. System Data Response 
- 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"
- AzureApi stringVersion 
- The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData SystemData Response 
- 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"
- azureApi StringVersion 
- The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- systemData SystemData Response 
- 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"
- azureApi stringVersion 
- The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- systemData SystemData Response 
- 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"
- azure_api_ strversion 
- The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_data SystemData Response 
- 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"
- azureApi StringVersion 
- The Azure API version of the resource.
- 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      
Authorized groundstation.- 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
- PolarizationLinear Vertical 
- linearVertical
- PolarizationLinear Horizontal 
- 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
SpacecraftLink, SpacecraftLinkArgs    
List of authorized spacecraft links per ground station and the expiration date of the authorization.- BandwidthMHz double
- Bandwidth in MHz.
- CenterFrequency doubleMHz 
- Center Frequency in MHz.
- Direction
string | Pulumi.Azure Native. Orbital. Direction 
- Direction (Uplink or Downlink).
- Name string
- Link name.
- Polarization
string | Pulumi.Azure Native. Orbital. Polarization 
- Polarization. e.g. (RHCP, LHCP).
- BandwidthMHz float64
- Bandwidth in MHz.
- CenterFrequency float64MHz 
- 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.
- centerFrequency DoubleMHz 
- 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.
- centerFrequency numberMHz 
- 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_ floathz 
- Bandwidth in MHz.
- center_frequency_ floatm_ hz 
- 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.
- centerFrequency NumberMHz 
- Center Frequency in MHz.
- direction String | "Uplink" | "Downlink"
- Direction (Uplink or Downlink).
- name String
- Link name.
- polarization
String | "RHCP" | "LHCP" | "linearVertical" | "linear Horizontal" 
- Polarization. e.g. (RHCP, LHCP).
SpacecraftLinkResponse, SpacecraftLinkResponseArgs      
List of authorized spacecraft links per ground station and the expiration date of the authorization.- 
List<Pulumi.Azure Native. Orbital. Inputs. Authorized Groundstation Response> 
- Authorized Ground Stations
- BandwidthMHz double
- Bandwidth in MHz.
- CenterFrequency doubleMHz 
- Center Frequency in MHz.
- Direction string
- Direction (Uplink or Downlink).
- Name string
- Link name.
- Polarization string
- Polarization. e.g. (RHCP, LHCP).
- 
[]AuthorizedGroundstation Response 
- Authorized Ground Stations
- BandwidthMHz float64
- Bandwidth in MHz.
- CenterFrequency float64MHz 
- Center Frequency in MHz.
- Direction string
- Direction (Uplink or Downlink).
- Name string
- Link name.
- Polarization string
- Polarization. e.g. (RHCP, LHCP).
- 
List<AuthorizedGroundstation Response> 
- Authorized Ground Stations
- bandwidthMHz Double
- Bandwidth in MHz.
- centerFrequency DoubleMHz 
- Center Frequency in MHz.
- direction String
- Direction (Uplink or Downlink).
- name String
- Link name.
- polarization String
- Polarization. e.g. (RHCP, LHCP).
- 
AuthorizedGroundstation Response[] 
- Authorized Ground Stations
- bandwidthMHz number
- Bandwidth in MHz.
- centerFrequency numberMHz 
- Center Frequency in MHz.
- direction string
- Direction (Uplink or Downlink).
- name string
- Link name.
- polarization string
- Polarization. e.g. (RHCP, LHCP).
- 
Sequence[AuthorizedGroundstation Response] 
- Authorized Ground Stations
- bandwidth_m_ floathz 
- Bandwidth in MHz.
- center_frequency_ floatm_ hz 
- Center Frequency in MHz.
- direction str
- Direction (Uplink or Downlink).
- name str
- Link name.
- polarization str
- Polarization. e.g. (RHCP, LHCP).
- List<Property Map>
- Authorized Ground Stations
- bandwidthMHz Number
- Bandwidth in MHz.
- centerFrequency NumberMHz 
- Center Frequency in MHz.
- direction String
- Direction (Uplink or Downlink).
- name String
- Link name.
- polarization String
- Polarization. e.g. (RHCP, LHCP).
SystemDataResponse, SystemDataResponseArgs      
Metadata pertaining to creation and last modification of the resource.- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- 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_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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
