azure logo
Azure Classic v5.38.0, Mar 21 23

azure.orbital.ContactProfile

Manages a Contact profile.

Example Usage

using System.Collections.Generic;
using Pulumi;
using Azure = Pulumi.Azure;

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

    var exampleVirtualNetwork = new Azure.Network.VirtualNetwork("exampleVirtualNetwork", new()
    {
        AddressSpaces = new[]
        {
            "10.0.0.0/16",
        },
        Location = azurerm_resource_group.Test.Location,
        ResourceGroupName = azurerm_resource_group.Test.Name,
    });

    var exampleSubnet = new Azure.Network.Subnet("exampleSubnet", new()
    {
        ResourceGroupName = exampleResourceGroup.Name,
        VirtualNetworkName = exampleVirtualNetwork.Name,
        AddressPrefixes = new[]
        {
            "10.0.1.0/24",
        },
        Delegations = new[]
        {
            new Azure.Network.Inputs.SubnetDelegationArgs
            {
                Name = "orbitalgateway",
                ServiceDelegation = new Azure.Network.Inputs.SubnetDelegationServiceDelegationArgs
                {
                    Name = "Microsoft.Orbital/orbitalGateways",
                    Actions = new[]
                    {
                        "Microsoft.Network/publicIPAddresses/join/action",
                        "Microsoft.Network/virtualNetworks/subnets/join/action",
                        "Microsoft.Network/virtualNetworks/read",
                        "Microsoft.Network/publicIPAddresses/read",
                    },
                },
            },
        },
    });

    var exampleContactProfile = new Azure.Orbital.ContactProfile("exampleContactProfile", new()
    {
        ResourceGroupName = azurerm_resource_group.Test.Name,
        Location = azurerm_resource_group.Test.Location,
        MinimumVariableContactDuration = "PT1M",
        AutoTracking = "disabled",
        Links = new[]
        {
            new Azure.Orbital.Inputs.ContactProfileLinkArgs
            {
                Channels = new[]
                {
                    new Azure.Orbital.Inputs.ContactProfileLinkChannelArgs
                    {
                        Name = "channelname",
                        BandwidthMhz = 100,
                        CenterFrequencyMhz = 101,
                        EndPoints = new[]
                        {
                            new Azure.Orbital.Inputs.ContactProfileLinkChannelEndPointArgs
                            {
                                EndPointName = "AQUA_command",
                                IpAddress = "10.0.1.0",
                                Port = "49513",
                                Protocol = "TCP",
                            },
                        },
                    },
                },
                Direction = "Uplink",
                Name = "RHCP_UL",
                Polarization = "RHCP",
            },
        },
        NetworkConfigurationSubnetId = exampleSubnet.Id,
    });

});
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/network"
	"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 {
		exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		exampleVirtualNetwork, err := network.NewVirtualNetwork(ctx, "exampleVirtualNetwork", &network.VirtualNetworkArgs{
			AddressSpaces: pulumi.StringArray{
				pulumi.String("10.0.0.0/16"),
			},
			Location:          pulumi.Any(azurerm_resource_group.Test.Location),
			ResourceGroupName: pulumi.Any(azurerm_resource_group.Test.Name),
		})
		if err != nil {
			return err
		}
		exampleSubnet, err := network.NewSubnet(ctx, "exampleSubnet", &network.SubnetArgs{
			ResourceGroupName:  exampleResourceGroup.Name,
			VirtualNetworkName: exampleVirtualNetwork.Name,
			AddressPrefixes: pulumi.StringArray{
				pulumi.String("10.0.1.0/24"),
			},
			Delegations: network.SubnetDelegationArray{
				&network.SubnetDelegationArgs{
					Name: pulumi.String("orbitalgateway"),
					ServiceDelegation: &network.SubnetDelegationServiceDelegationArgs{
						Name: pulumi.String("Microsoft.Orbital/orbitalGateways"),
						Actions: pulumi.StringArray{
							pulumi.String("Microsoft.Network/publicIPAddresses/join/action"),
							pulumi.String("Microsoft.Network/virtualNetworks/subnets/join/action"),
							pulumi.String("Microsoft.Network/virtualNetworks/read"),
							pulumi.String("Microsoft.Network/publicIPAddresses/read"),
						},
					},
				},
			},
		})
		if err != nil {
			return err
		}
		_, err = orbital.NewContactProfile(ctx, "exampleContactProfile", &orbital.ContactProfileArgs{
			ResourceGroupName:              pulumi.Any(azurerm_resource_group.Test.Name),
			Location:                       pulumi.Any(azurerm_resource_group.Test.Location),
			MinimumVariableContactDuration: pulumi.String("PT1M"),
			AutoTracking:                   pulumi.String("disabled"),
			Links: orbital.ContactProfileLinkArray{
				&orbital.ContactProfileLinkArgs{
					Channels: orbital.ContactProfileLinkChannelArray{
						&orbital.ContactProfileLinkChannelArgs{
							Name:               pulumi.String("channelname"),
							BandwidthMhz:       pulumi.Float64(100),
							CenterFrequencyMhz: pulumi.Float64(101),
							EndPoints: orbital.ContactProfileLinkChannelEndPointArray{
								&orbital.ContactProfileLinkChannelEndPointArgs{
									EndPointName: pulumi.String("AQUA_command"),
									IpAddress:    pulumi.String("10.0.1.0"),
									Port:         pulumi.String("49513"),
									Protocol:     pulumi.String("TCP"),
								},
							},
						},
					},
					Direction:    pulumi.String("Uplink"),
					Name:         pulumi.String("RHCP_UL"),
					Polarization: pulumi.String("RHCP"),
				},
			},
			NetworkConfigurationSubnetId: exampleSubnet.ID(),
		})
		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.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.network.VirtualNetwork;
import com.pulumi.azure.network.VirtualNetworkArgs;
import com.pulumi.azure.network.Subnet;
import com.pulumi.azure.network.SubnetArgs;
import com.pulumi.azure.network.inputs.SubnetDelegationArgs;
import com.pulumi.azure.network.inputs.SubnetDelegationServiceDelegationArgs;
import com.pulumi.azure.orbital.ContactProfile;
import com.pulumi.azure.orbital.ContactProfileArgs;
import com.pulumi.azure.orbital.inputs.ContactProfileLinkArgs;
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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()        
            .location("West Europe")
            .build());

        var exampleVirtualNetwork = new VirtualNetwork("exampleVirtualNetwork", VirtualNetworkArgs.builder()        
            .addressSpaces("10.0.0.0/16")
            .location(azurerm_resource_group.test().location())
            .resourceGroupName(azurerm_resource_group.test().name())
            .build());

        var exampleSubnet = new Subnet("exampleSubnet", SubnetArgs.builder()        
            .resourceGroupName(exampleResourceGroup.name())
            .virtualNetworkName(exampleVirtualNetwork.name())
            .addressPrefixes("10.0.1.0/24")
            .delegations(SubnetDelegationArgs.builder()
                .name("orbitalgateway")
                .serviceDelegation(SubnetDelegationServiceDelegationArgs.builder()
                    .name("Microsoft.Orbital/orbitalGateways")
                    .actions(                    
                        "Microsoft.Network/publicIPAddresses/join/action",
                        "Microsoft.Network/virtualNetworks/subnets/join/action",
                        "Microsoft.Network/virtualNetworks/read",
                        "Microsoft.Network/publicIPAddresses/read")
                    .build())
                .build())
            .build());

        var exampleContactProfile = new ContactProfile("exampleContactProfile", ContactProfileArgs.builder()        
            .resourceGroupName(azurerm_resource_group.test().name())
            .location(azurerm_resource_group.test().location())
            .minimumVariableContactDuration("PT1M")
            .autoTracking("disabled")
            .links(ContactProfileLinkArgs.builder()
                .channels(ContactProfileLinkChannelArgs.builder()
                    .name("channelname")
                    .bandwidthMhz(100)
                    .centerFrequencyMhz(101)
                    .endPoints(ContactProfileLinkChannelEndPointArgs.builder()
                        .endPointName("AQUA_command")
                        .ipAddress("10.0.1.0")
                        .port("49513")
                        .protocol("TCP")
                        .build())
                    .build())
                .direction("Uplink")
                .name("RHCP_UL")
                .polarization("RHCP")
                .build())
            .networkConfigurationSubnetId(exampleSubnet.id())
            .build());

    }
}
import pulumi
import pulumi_azure as azure

example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_virtual_network = azure.network.VirtualNetwork("exampleVirtualNetwork",
    address_spaces=["10.0.0.0/16"],
    location=azurerm_resource_group["test"]["location"],
    resource_group_name=azurerm_resource_group["test"]["name"])
example_subnet = azure.network.Subnet("exampleSubnet",
    resource_group_name=example_resource_group.name,
    virtual_network_name=example_virtual_network.name,
    address_prefixes=["10.0.1.0/24"],
    delegations=[azure.network.SubnetDelegationArgs(
        name="orbitalgateway",
        service_delegation=azure.network.SubnetDelegationServiceDelegationArgs(
            name="Microsoft.Orbital/orbitalGateways",
            actions=[
                "Microsoft.Network/publicIPAddresses/join/action",
                "Microsoft.Network/virtualNetworks/subnets/join/action",
                "Microsoft.Network/virtualNetworks/read",
                "Microsoft.Network/publicIPAddresses/read",
            ],
        ),
    )])
example_contact_profile = azure.orbital.ContactProfile("exampleContactProfile",
    resource_group_name=azurerm_resource_group["test"]["name"],
    location=azurerm_resource_group["test"]["location"],
    minimum_variable_contact_duration="PT1M",
    auto_tracking="disabled",
    links=[azure.orbital.ContactProfileLinkArgs(
        channels=[azure.orbital.ContactProfileLinkChannelArgs(
            name="channelname",
            bandwidth_mhz=100,
            center_frequency_mhz=101,
            end_points=[azure.orbital.ContactProfileLinkChannelEndPointArgs(
                end_point_name="AQUA_command",
                ip_address="10.0.1.0",
                port="49513",
                protocol="TCP",
            )],
        )],
        direction="Uplink",
        name="RHCP_UL",
        polarization="RHCP",
    )],
    network_configuration_subnet_id=example_subnet.id)
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleVirtualNetwork = new azure.network.VirtualNetwork("exampleVirtualNetwork", {
    addressSpaces: ["10.0.0.0/16"],
    location: azurerm_resource_group.test.location,
    resourceGroupName: azurerm_resource_group.test.name,
});
const exampleSubnet = new azure.network.Subnet("exampleSubnet", {
    resourceGroupName: exampleResourceGroup.name,
    virtualNetworkName: exampleVirtualNetwork.name,
    addressPrefixes: ["10.0.1.0/24"],
    delegations: [{
        name: "orbitalgateway",
        serviceDelegation: {
            name: "Microsoft.Orbital/orbitalGateways",
            actions: [
                "Microsoft.Network/publicIPAddresses/join/action",
                "Microsoft.Network/virtualNetworks/subnets/join/action",
                "Microsoft.Network/virtualNetworks/read",
                "Microsoft.Network/publicIPAddresses/read",
            ],
        },
    }],
});
const exampleContactProfile = new azure.orbital.ContactProfile("exampleContactProfile", {
    resourceGroupName: azurerm_resource_group.test.name,
    location: azurerm_resource_group.test.location,
    minimumVariableContactDuration: "PT1M",
    autoTracking: "disabled",
    links: [{
        channels: [{
            name: "channelname",
            bandwidthMhz: 100,
            centerFrequencyMhz: 101,
            endPoints: [{
                endPointName: "AQUA_command",
                ipAddress: "10.0.1.0",
                port: "49513",
                protocol: "TCP",
            }],
        }],
        direction: "Uplink",
        name: "RHCP_UL",
        polarization: "RHCP",
    }],
    networkConfigurationSubnetId: exampleSubnet.id,
});
resources:
  exampleResourceGroup:
    type: azure:core:ResourceGroup
    properties:
      location: West Europe
  exampleVirtualNetwork:
    type: azure:network:VirtualNetwork
    properties:
      addressSpaces:
        - 10.0.0.0/16
      location: ${azurerm_resource_group.test.location}
      resourceGroupName: ${azurerm_resource_group.test.name}
  exampleSubnet:
    type: azure:network:Subnet
    properties:
      resourceGroupName: ${exampleResourceGroup.name}
      virtualNetworkName: ${exampleVirtualNetwork.name}
      addressPrefixes:
        - 10.0.1.0/24
      delegations:
        - name: orbitalgateway
          serviceDelegation:
            name: Microsoft.Orbital/orbitalGateways
            actions:
              - Microsoft.Network/publicIPAddresses/join/action
              - Microsoft.Network/virtualNetworks/subnets/join/action
              - Microsoft.Network/virtualNetworks/read
              - Microsoft.Network/publicIPAddresses/read
  exampleContactProfile:
    type: azure:orbital:ContactProfile
    properties:
      resourceGroupName: ${azurerm_resource_group.test.name}
      location: ${azurerm_resource_group.test.location}
      minimumVariableContactDuration: PT1M
      autoTracking: disabled
      links:
        - channels:
            - name: channelname
              bandwidthMhz: 100
              centerFrequencyMhz: 101
              endPoints:
                - endPointName: AQUA_command
                  ipAddress: 10.0.1.0
                  port: '49513'
                  protocol: TCP
          direction: Uplink
          name: RHCP_UL
          polarization: RHCP
      networkConfigurationSubnetId: ${exampleSubnet.id}

Create ContactProfile Resource

new ContactProfile(name: string, args: ContactProfileArgs, opts?: CustomResourceOptions);
@overload
def ContactProfile(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   auto_tracking: Optional[str] = None,
                   event_hub_uri: Optional[str] = None,
                   links: Optional[Sequence[ContactProfileLinkArgs]] = None,
                   location: Optional[str] = None,
                   minimum_elevation_degrees: Optional[float] = None,
                   minimum_variable_contact_duration: Optional[str] = None,
                   name: Optional[str] = None,
                   network_configuration_subnet_id: Optional[str] = None,
                   resource_group_name: Optional[str] = None,
                   tags: Optional[Mapping[str, str]] = None)
@overload
def ContactProfile(resource_name: str,
                   args: ContactProfileArgs,
                   opts: Optional[ResourceOptions] = None)
func NewContactProfile(ctx *Context, name string, args ContactProfileArgs, opts ...ResourceOption) (*ContactProfile, error)
public ContactProfile(string name, ContactProfileArgs args, CustomResourceOptions? opts = null)
public ContactProfile(String name, ContactProfileArgs args)
public ContactProfile(String name, ContactProfileArgs args, CustomResourceOptions options)
type: azure:orbital:ContactProfile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args ContactProfileArgs
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 ContactProfileArgs
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 ContactProfileArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args ContactProfileArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args ContactProfileArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

ContactProfile 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 ContactProfile resource accepts the following input properties:

AutoTracking string

Auto-tracking configurations for a spacecraft. Possible values are disabled, xBand and sBand.

Links List<ContactProfileLinkArgs>

A list of spacecraft links. A links block as defined below. Changing this forces a new resource to be created.

MinimumVariableContactDuration string

Minimum viable contact duration in ISO 8601 format. Used for listing the available contacts with a spacecraft at a given ground station.

NetworkConfigurationSubnetId string

ARM resource identifier of the subnet delegated to the Microsoft.Orbital/orbitalGateways. Needs to be at least a class C subnet, and should not have any IP created in it. Changing this forces a new resource to be created.

ResourceGroupName string

The name of the Resource Group where the contact profile exists. Changing this forces a new resource to be created.

EventHubUri string

ARM resource identifier of the Event Hub used for telemetry. Requires granting Orbital Resource Provider the rights to send telemetry into the hub.

Location string

The location where the contact profile exists. Changing this forces a new resource to be created.

MinimumElevationDegrees double

Maximum elevation of the antenna during the contact in decimal degrees.

Name string

The name of the contact profile. Changing this forces a new resource to be created.

Tags Dictionary<string, string>

A mapping of tags to assign to the resource.

AutoTracking string

Auto-tracking configurations for a spacecraft. Possible values are disabled, xBand and sBand.

Links []ContactProfileLinkArgs

A list of spacecraft links. A links block as defined below. Changing this forces a new resource to be created.

MinimumVariableContactDuration string

Minimum viable contact duration in ISO 8601 format. Used for listing the available contacts with a spacecraft at a given ground station.

NetworkConfigurationSubnetId string

ARM resource identifier of the subnet delegated to the Microsoft.Orbital/orbitalGateways. Needs to be at least a class C subnet, and should not have any IP created in it. Changing this forces a new resource to be created.

ResourceGroupName string

The name of the Resource Group where the contact profile exists. Changing this forces a new resource to be created.

EventHubUri string

ARM resource identifier of the Event Hub used for telemetry. Requires granting Orbital Resource Provider the rights to send telemetry into the hub.

Location string

The location where the contact profile exists. Changing this forces a new resource to be created.

MinimumElevationDegrees float64

Maximum elevation of the antenna during the contact in decimal degrees.

Name string

The name of the contact profile. Changing this forces a new resource to be created.

Tags map[string]string

A mapping of tags to assign to the resource.

autoTracking String

Auto-tracking configurations for a spacecraft. Possible values are disabled, xBand and sBand.

links List<ContactProfileLinkArgs>

A list of spacecraft links. A links block as defined below. Changing this forces a new resource to be created.

minimumVariableContactDuration String

Minimum viable contact duration in ISO 8601 format. Used for listing the available contacts with a spacecraft at a given ground station.

networkConfigurationSubnetId String

ARM resource identifier of the subnet delegated to the Microsoft.Orbital/orbitalGateways. Needs to be at least a class C subnet, and should not have any IP created in it. Changing this forces a new resource to be created.

resourceGroupName String

The name of the Resource Group where the contact profile exists. Changing this forces a new resource to be created.

eventHubUri String

ARM resource identifier of the Event Hub used for telemetry. Requires granting Orbital Resource Provider the rights to send telemetry into the hub.

location String

The location where the contact profile exists. Changing this forces a new resource to be created.

minimumElevationDegrees Double

Maximum elevation of the antenna during the contact in decimal degrees.

name String

The name of the contact profile. Changing this forces a new resource to be created.

tags Map<String,String>

A mapping of tags to assign to the resource.

autoTracking string

Auto-tracking configurations for a spacecraft. Possible values are disabled, xBand and sBand.

links ContactProfileLinkArgs[]

A list of spacecraft links. A links block as defined below. Changing this forces a new resource to be created.

minimumVariableContactDuration string

Minimum viable contact duration in ISO 8601 format. Used for listing the available contacts with a spacecraft at a given ground station.

networkConfigurationSubnetId string

ARM resource identifier of the subnet delegated to the Microsoft.Orbital/orbitalGateways. Needs to be at least a class C subnet, and should not have any IP created in it. Changing this forces a new resource to be created.

resourceGroupName string

The name of the Resource Group where the contact profile exists. Changing this forces a new resource to be created.

eventHubUri string

ARM resource identifier of the Event Hub used for telemetry. Requires granting Orbital Resource Provider the rights to send telemetry into the hub.

location string

The location where the contact profile exists. Changing this forces a new resource to be created.

minimumElevationDegrees number

Maximum elevation of the antenna during the contact in decimal degrees.

name string

The name of the contact profile. Changing this forces a new resource to be created.

tags {[key: string]: string}

A mapping of tags to assign to the resource.

auto_tracking str

Auto-tracking configurations for a spacecraft. Possible values are disabled, xBand and sBand.

links Sequence[ContactProfileLinkArgs]

A list of spacecraft links. A links block as defined below. Changing this forces a new resource to be created.

minimum_variable_contact_duration str

Minimum viable contact duration in ISO 8601 format. Used for listing the available contacts with a spacecraft at a given ground station.

network_configuration_subnet_id str

ARM resource identifier of the subnet delegated to the Microsoft.Orbital/orbitalGateways. Needs to be at least a class C subnet, and should not have any IP created in it. Changing this forces a new resource to be created.

resource_group_name str

The name of the Resource Group where the contact profile exists. Changing this forces a new resource to be created.

event_hub_uri str

ARM resource identifier of the Event Hub used for telemetry. Requires granting Orbital Resource Provider the rights to send telemetry into the hub.

location str

The location where the contact profile exists. Changing this forces a new resource to be created.

minimum_elevation_degrees float

Maximum elevation of the antenna during the contact in decimal degrees.

name str

The name of the contact profile. Changing this forces a new resource to be created.

tags Mapping[str, str]

A mapping of tags to assign to the resource.

autoTracking String

Auto-tracking configurations for a spacecraft. Possible values are disabled, xBand and sBand.

links List<Property Map>

A list of spacecraft links. A links block as defined below. Changing this forces a new resource to be created.

minimumVariableContactDuration String

Minimum viable contact duration in ISO 8601 format. Used for listing the available contacts with a spacecraft at a given ground station.

networkConfigurationSubnetId String

ARM resource identifier of the subnet delegated to the Microsoft.Orbital/orbitalGateways. Needs to be at least a class C subnet, and should not have any IP created in it. Changing this forces a new resource to be created.

resourceGroupName String

The name of the Resource Group where the contact profile exists. Changing this forces a new resource to be created.

eventHubUri String

ARM resource identifier of the Event Hub used for telemetry. Requires granting Orbital Resource Provider the rights to send telemetry into the hub.

location String

The location where the contact profile exists. Changing this forces a new resource to be created.

minimumElevationDegrees Number

Maximum elevation of the antenna during the contact in decimal degrees.

name String

The name of the contact profile. Changing this forces a new resource to be created.

tags Map<String>

A mapping of tags to assign to the resource.

Outputs

All input properties are implicitly available as output properties. Additionally, the ContactProfile 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 ContactProfile Resource

Get an existing ContactProfile 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?: ContactProfileState, opts?: CustomResourceOptions): ContactProfile
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        auto_tracking: Optional[str] = None,
        event_hub_uri: Optional[str] = None,
        links: Optional[Sequence[ContactProfileLinkArgs]] = None,
        location: Optional[str] = None,
        minimum_elevation_degrees: Optional[float] = None,
        minimum_variable_contact_duration: Optional[str] = None,
        name: Optional[str] = None,
        network_configuration_subnet_id: Optional[str] = None,
        resource_group_name: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None) -> ContactProfile
func GetContactProfile(ctx *Context, name string, id IDInput, state *ContactProfileState, opts ...ResourceOption) (*ContactProfile, error)
public static ContactProfile Get(string name, Input<string> id, ContactProfileState? state, CustomResourceOptions? opts = null)
public static ContactProfile get(String name, Output<String> id, ContactProfileState 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.
The following state arguments are supported:
AutoTracking string

Auto-tracking configurations for a spacecraft. Possible values are disabled, xBand and sBand.

EventHubUri string

ARM resource identifier of the Event Hub used for telemetry. Requires granting Orbital Resource Provider the rights to send telemetry into the hub.

Links List<ContactProfileLinkArgs>

A list of spacecraft links. A links block as defined below. Changing this forces a new resource to be created.

Location string

The location where the contact profile exists. Changing this forces a new resource to be created.

MinimumElevationDegrees double

Maximum elevation of the antenna during the contact in decimal degrees.

MinimumVariableContactDuration string

Minimum viable contact duration in ISO 8601 format. Used for listing the available contacts with a spacecraft at a given ground station.

Name string

The name of the contact profile. Changing this forces a new resource to be created.

NetworkConfigurationSubnetId string

ARM resource identifier of the subnet delegated to the Microsoft.Orbital/orbitalGateways. Needs to be at least a class C subnet, and should not have any IP created in it. Changing this forces a new resource to be created.

ResourceGroupName string

The name of the Resource Group where the contact profile exists. Changing this forces a new resource to be created.

Tags Dictionary<string, string>

A mapping of tags to assign to the resource.

AutoTracking string

Auto-tracking configurations for a spacecraft. Possible values are disabled, xBand and sBand.

EventHubUri string

ARM resource identifier of the Event Hub used for telemetry. Requires granting Orbital Resource Provider the rights to send telemetry into the hub.

Links []ContactProfileLinkArgs

A list of spacecraft links. A links block as defined below. Changing this forces a new resource to be created.

Location string

The location where the contact profile exists. Changing this forces a new resource to be created.

MinimumElevationDegrees float64

Maximum elevation of the antenna during the contact in decimal degrees.

MinimumVariableContactDuration string

Minimum viable contact duration in ISO 8601 format. Used for listing the available contacts with a spacecraft at a given ground station.

Name string

The name of the contact profile. Changing this forces a new resource to be created.

NetworkConfigurationSubnetId string

ARM resource identifier of the subnet delegated to the Microsoft.Orbital/orbitalGateways. Needs to be at least a class C subnet, and should not have any IP created in it. Changing this forces a new resource to be created.

ResourceGroupName string

The name of the Resource Group where the contact profile exists. Changing this forces a new resource to be created.

Tags map[string]string

A mapping of tags to assign to the resource.

autoTracking String

Auto-tracking configurations for a spacecraft. Possible values are disabled, xBand and sBand.

eventHubUri String

ARM resource identifier of the Event Hub used for telemetry. Requires granting Orbital Resource Provider the rights to send telemetry into the hub.

links List<ContactProfileLinkArgs>

A list of spacecraft links. A links block as defined below. Changing this forces a new resource to be created.

location String

The location where the contact profile exists. Changing this forces a new resource to be created.

minimumElevationDegrees Double

Maximum elevation of the antenna during the contact in decimal degrees.

minimumVariableContactDuration String

Minimum viable contact duration in ISO 8601 format. Used for listing the available contacts with a spacecraft at a given ground station.

name String

The name of the contact profile. Changing this forces a new resource to be created.

networkConfigurationSubnetId String

ARM resource identifier of the subnet delegated to the Microsoft.Orbital/orbitalGateways. Needs to be at least a class C subnet, and should not have any IP created in it. Changing this forces a new resource to be created.

resourceGroupName String

The name of the Resource Group where the contact profile exists. Changing this forces a new resource to be created.

tags Map<String,String>

A mapping of tags to assign to the resource.

autoTracking string

Auto-tracking configurations for a spacecraft. Possible values are disabled, xBand and sBand.

eventHubUri string

ARM resource identifier of the Event Hub used for telemetry. Requires granting Orbital Resource Provider the rights to send telemetry into the hub.

links ContactProfileLinkArgs[]

A list of spacecraft links. A links block as defined below. Changing this forces a new resource to be created.

location string

The location where the contact profile exists. Changing this forces a new resource to be created.

minimumElevationDegrees number

Maximum elevation of the antenna during the contact in decimal degrees.

minimumVariableContactDuration string

Minimum viable contact duration in ISO 8601 format. Used for listing the available contacts with a spacecraft at a given ground station.

name string

The name of the contact profile. Changing this forces a new resource to be created.

networkConfigurationSubnetId string

ARM resource identifier of the subnet delegated to the Microsoft.Orbital/orbitalGateways. Needs to be at least a class C subnet, and should not have any IP created in it. Changing this forces a new resource to be created.

resourceGroupName string

The name of the Resource Group where the contact profile exists. Changing this forces a new resource to be created.

tags {[key: string]: string}

A mapping of tags to assign to the resource.

auto_tracking str

Auto-tracking configurations for a spacecraft. Possible values are disabled, xBand and sBand.

event_hub_uri str

ARM resource identifier of the Event Hub used for telemetry. Requires granting Orbital Resource Provider the rights to send telemetry into the hub.

links Sequence[ContactProfileLinkArgs]

A list of spacecraft links. A links block as defined below. Changing this forces a new resource to be created.

location str

The location where the contact profile exists. Changing this forces a new resource to be created.

minimum_elevation_degrees float

Maximum elevation of the antenna during the contact in decimal degrees.

minimum_variable_contact_duration str

Minimum viable contact duration in ISO 8601 format. Used for listing the available contacts with a spacecraft at a given ground station.

name str

The name of the contact profile. Changing this forces a new resource to be created.

network_configuration_subnet_id str

ARM resource identifier of the subnet delegated to the Microsoft.Orbital/orbitalGateways. Needs to be at least a class C subnet, and should not have any IP created in it. Changing this forces a new resource to be created.

resource_group_name str

The name of the Resource Group where the contact profile exists. Changing this forces a new resource to be created.

tags Mapping[str, str]

A mapping of tags to assign to the resource.

autoTracking String

Auto-tracking configurations for a spacecraft. Possible values are disabled, xBand and sBand.

eventHubUri String

ARM resource identifier of the Event Hub used for telemetry. Requires granting Orbital Resource Provider the rights to send telemetry into the hub.

links List<Property Map>

A list of spacecraft links. A links block as defined below. Changing this forces a new resource to be created.

location String

The location where the contact profile exists. Changing this forces a new resource to be created.

minimumElevationDegrees Number

Maximum elevation of the antenna during the contact in decimal degrees.

minimumVariableContactDuration String

Minimum viable contact duration in ISO 8601 format. Used for listing the available contacts with a spacecraft at a given ground station.

name String

The name of the contact profile. Changing this forces a new resource to be created.

networkConfigurationSubnetId String

ARM resource identifier of the subnet delegated to the Microsoft.Orbital/orbitalGateways. Needs to be at least a class C subnet, and should not have any IP created in it. Changing this forces a new resource to be created.

resourceGroupName String

The name of the Resource Group where the contact profile exists. Changing this forces a new resource to be created.

tags Map<String>

A mapping of tags to assign to the resource.

Supporting Types

Channels List<ContactProfileLinkChannel>

A list of contact profile link channels. A channels block as defined below. Changing this forces a new resource to be created.

Direction string

Direction of the link. Possible values are Uplink and Downlink.

Name string

Name of the link.

Polarization string

Polarization of the link. Possible values are LHCP, RHCP, linearVertical and linearHorizontal.

Channels []ContactProfileLinkChannel

A list of contact profile link channels. A channels block as defined below. Changing this forces a new resource to be created.

Direction string

Direction of the link. Possible values are Uplink and Downlink.

Name string

Name of the link.

Polarization string

Polarization of the link. Possible values are LHCP, RHCP, linearVertical and linearHorizontal.

channels List<ContactProfileLinkChannel>

A list of contact profile link channels. A channels block as defined below. Changing this forces a new resource to be created.

direction String

Direction of the link. Possible values are Uplink and Downlink.

name String

Name of the link.

polarization String

Polarization of the link. Possible values are LHCP, RHCP, linearVertical and linearHorizontal.

channels ContactProfileLinkChannel[]

A list of contact profile link channels. A channels block as defined below. Changing this forces a new resource to be created.

direction string

Direction of the link. Possible values are Uplink and Downlink.

name string

Name of the link.

polarization string

Polarization of the link. Possible values are LHCP, RHCP, linearVertical and linearHorizontal.

channels Sequence[ContactProfileLinkChannel]

A list of contact profile link channels. A channels block as defined below. Changing this forces a new resource to be created.

direction str

Direction of the link. Possible values are Uplink and Downlink.

name str

Name of the link.

polarization str

Polarization of the link. Possible values are LHCP, RHCP, linearVertical and linearHorizontal.

channels List<Property Map>

A list of contact profile link channels. A channels block as defined below. Changing this forces a new resource to be created.

direction String

Direction of the link. Possible values are Uplink and Downlink.

name String

Name of the link.

polarization String

Polarization of the link. Possible values are LHCP, RHCP, linearVertical and linearHorizontal.

ContactProfileLinkChannel

BandwidthMhz double

Bandwidth in MHz.

CenterFrequencyMhz double

Center frequency in MHz.

EndPoints List<ContactProfileLinkChannelEndPoint>

Customer End point to store/retrieve data during a contact. An end_point block as defined below.

Name string

Name of the channel.

DemodulationConfiguration string

Copy of the modem configuration file such as Kratos QRadio or Kratos QuantumRx. Only valid for downlink directions. If provided, the modem connects to the customer endpoint and sends demodulated data instead of a VITA.49 stream.

ModulationConfiguration string

Copy of the modem configuration file such as Kratos QRadio. Only valid for uplink directions. If provided, the modem connects to the customer endpoint and accepts commands from the customer instead of a VITA.49 stream.

BandwidthMhz float64

Bandwidth in MHz.

CenterFrequencyMhz float64

Center frequency in MHz.

EndPoints []ContactProfileLinkChannelEndPoint

Customer End point to store/retrieve data during a contact. An end_point block as defined below.

Name string

Name of the channel.

DemodulationConfiguration string

Copy of the modem configuration file such as Kratos QRadio or Kratos QuantumRx. Only valid for downlink directions. If provided, the modem connects to the customer endpoint and sends demodulated data instead of a VITA.49 stream.

ModulationConfiguration string

Copy of the modem configuration file such as Kratos QRadio. Only valid for uplink directions. If provided, the modem connects to the customer endpoint and accepts commands from the customer instead of a VITA.49 stream.

bandwidthMhz Double

Bandwidth in MHz.

centerFrequencyMhz Double

Center frequency in MHz.

endPoints List<ContactProfileLinkChannelEndPoint>

Customer End point to store/retrieve data during a contact. An end_point block as defined below.

name String

Name of the channel.

demodulationConfiguration String

Copy of the modem configuration file such as Kratos QRadio or Kratos QuantumRx. Only valid for downlink directions. If provided, the modem connects to the customer endpoint and sends demodulated data instead of a VITA.49 stream.

modulationConfiguration String

Copy of the modem configuration file such as Kratos QRadio. Only valid for uplink directions. If provided, the modem connects to the customer endpoint and accepts commands from the customer instead of a VITA.49 stream.

bandwidthMhz number

Bandwidth in MHz.

centerFrequencyMhz number

Center frequency in MHz.

endPoints ContactProfileLinkChannelEndPoint[]

Customer End point to store/retrieve data during a contact. An end_point block as defined below.

name string

Name of the channel.

demodulationConfiguration string

Copy of the modem configuration file such as Kratos QRadio or Kratos QuantumRx. Only valid for downlink directions. If provided, the modem connects to the customer endpoint and sends demodulated data instead of a VITA.49 stream.

modulationConfiguration string

Copy of the modem configuration file such as Kratos QRadio. Only valid for uplink directions. If provided, the modem connects to the customer endpoint and accepts commands from the customer instead of a VITA.49 stream.

bandwidth_mhz float

Bandwidth in MHz.

center_frequency_mhz float

Center frequency in MHz.

end_points Sequence[ContactProfileLinkChannelEndPoint]

Customer End point to store/retrieve data during a contact. An end_point block as defined below.

name str

Name of the channel.

demodulation_configuration str

Copy of the modem configuration file such as Kratos QRadio or Kratos QuantumRx. Only valid for downlink directions. If provided, the modem connects to the customer endpoint and sends demodulated data instead of a VITA.49 stream.

modulation_configuration str

Copy of the modem configuration file such as Kratos QRadio. Only valid for uplink directions. If provided, the modem connects to the customer endpoint and accepts commands from the customer instead of a VITA.49 stream.

bandwidthMhz Number

Bandwidth in MHz.

centerFrequencyMhz Number

Center frequency in MHz.

endPoints List<Property Map>

Customer End point to store/retrieve data during a contact. An end_point block as defined below.

name String

Name of the channel.

demodulationConfiguration String

Copy of the modem configuration file such as Kratos QRadio or Kratos QuantumRx. Only valid for downlink directions. If provided, the modem connects to the customer endpoint and sends demodulated data instead of a VITA.49 stream.

modulationConfiguration String

Copy of the modem configuration file such as Kratos QRadio. Only valid for uplink directions. If provided, the modem connects to the customer endpoint and accepts commands from the customer instead of a VITA.49 stream.

ContactProfileLinkChannelEndPoint

EndPointName string

Name of an end point.

IpAddress string

IP address of an end point.

Port string

TCP port to listen on to receive data.

Protocol string

Protocol of an end point. Possible values are TCP and UDP.

EndPointName string

Name of an end point.

IpAddress string

IP address of an end point.

Port string

TCP port to listen on to receive data.

Protocol string

Protocol of an end point. Possible values are TCP and UDP.

endPointName String

Name of an end point.

ipAddress String

IP address of an end point.

port String

TCP port to listen on to receive data.

protocol String

Protocol of an end point. Possible values are TCP and UDP.

endPointName string

Name of an end point.

ipAddress string

IP address of an end point.

port string

TCP port to listen on to receive data.

protocol string

Protocol of an end point. Possible values are TCP and UDP.

end_point_name str

Name of an end point.

ip_address str

IP address of an end point.

port str

TCP port to listen on to receive data.

protocol str

Protocol of an end point. Possible values are TCP and UDP.

endPointName String

Name of an end point.

ipAddress String

IP address of an end point.

port String

TCP port to listen on to receive data.

protocol String

Protocol of an end point. Possible values are TCP and UDP.

Import

Contact profile can be imported using the resource id, e.g.

 $ pulumi import azure:orbital/contactProfile:ContactProfile example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Orbital/contactProfiles/contactProfile1

Package Details

Repository
Azure Classic pulumi/pulumi-azure
License
Apache-2.0
Notes

This Pulumi package is based on the azurerm Terraform Provider.