1. Packages
  2. Azure Classic
  3. API Docs
  4. orbital
  5. ContactProfile

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

azure.orbital.ContactProfile

Explore with Pulumi AI

Manages a Contact profile.

Note: The azure.orbital.ContactProfile resource has been deprecated and will be removed in v5.0 of the AzureRM Provider.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const example = new azure.core.ResourceGroup("example", {
    name: "rg-example",
    location: "West Europe",
});
const exampleVirtualNetwork = new azure.network.VirtualNetwork("example", {
    name: "testvnet",
    addressSpaces: ["10.0.0.0/16"],
    location: example.location,
    resourceGroupName: example.name,
});
const exampleSubnet = new azure.network.Subnet("example", {
    name: "testsubnet",
    resourceGroupName: example.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("example", {
    name: "example-contact-profile",
    resourceGroupName: example.name,
    location: example.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,
});
Copy
import pulumi
import pulumi_azure as azure

example = azure.core.ResourceGroup("example",
    name="rg-example",
    location="West Europe")
example_virtual_network = azure.network.VirtualNetwork("example",
    name="testvnet",
    address_spaces=["10.0.0.0/16"],
    location=example.location,
    resource_group_name=example.name)
example_subnet = azure.network.Subnet("example",
    name="testsubnet",
    resource_group_name=example.name,
    virtual_network_name=example_virtual_network.name,
    address_prefixes=["10.0.1.0/24"],
    delegations=[{
        "name": "orbitalgateway",
        "service_delegation": {
            "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("example",
    name="example-contact-profile",
    resource_group_name=example.name,
    location=example.location,
    minimum_variable_contact_duration="PT1M",
    auto_tracking="disabled",
    links=[{
        "channels": [{
            "name": "channelname",
            "bandwidth_mhz": 100,
            "center_frequency_mhz": 101,
            "end_points": [{
                "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)
Copy
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/network"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/orbital"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
			Name:     pulumi.String("rg-example"),
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		exampleVirtualNetwork, err := network.NewVirtualNetwork(ctx, "example", &network.VirtualNetworkArgs{
			Name: pulumi.String("testvnet"),
			AddressSpaces: pulumi.StringArray{
				pulumi.String("10.0.0.0/16"),
			},
			Location:          example.Location,
			ResourceGroupName: example.Name,
		})
		if err != nil {
			return err
		}
		exampleSubnet, err := network.NewSubnet(ctx, "example", &network.SubnetArgs{
			Name:               pulumi.String("testsubnet"),
			ResourceGroupName:  example.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, "example", &orbital.ContactProfileArgs{
			Name:                           pulumi.String("example-contact-profile"),
			ResourceGroupName:              example.Name,
			Location:                       example.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
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;

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

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

    var exampleSubnet = new Azure.Network.Subnet("example", new()
    {
        Name = "testsubnet",
        ResourceGroupName = example.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("example", new()
    {
        Name = "example-contact-profile",
        ResourceGroupName = example.Name,
        Location = example.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,
    });

});
Copy
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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
            .name("rg-example")
            .location("West Europe")
            .build());

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

        var exampleSubnet = new Subnet("exampleSubnet", SubnetArgs.builder()
            .name("testsubnet")
            .resourceGroupName(example.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()
            .name("example-contact-profile")
            .resourceGroupName(example.name())
            .location(example.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());

    }
}
Copy
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: rg-example
      location: West Europe
  exampleVirtualNetwork:
    type: azure:network:VirtualNetwork
    name: example
    properties:
      name: testvnet
      addressSpaces:
        - 10.0.0.0/16
      location: ${example.location}
      resourceGroupName: ${example.name}
  exampleSubnet:
    type: azure:network:Subnet
    name: example
    properties:
      name: testsubnet
      resourceGroupName: ${example.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
    name: example
    properties:
      name: example-contact-profile
      resourceGroupName: ${example.name}
      location: ${example.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}
Copy

Create ContactProfile Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new ContactProfile(name: string, args: ContactProfileArgs, opts?: CustomResourceOptions);
@overload
def ContactProfile(resource_name: str,
                   args: ContactProfileArgs,
                   opts: Optional[ResourceOptions] = None)

@overload
def ContactProfile(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   auto_tracking: Optional[str] = None,
                   links: Optional[Sequence[ContactProfileLinkArgs]] = None,
                   minimum_variable_contact_duration: Optional[str] = None,
                   network_configuration_subnet_id: Optional[str] = None,
                   resource_group_name: Optional[str] = None,
                   event_hub_uri: Optional[str] = None,
                   location: Optional[str] = None,
                   minimum_elevation_degrees: Optional[float] = None,
                   name: Optional[str] = None,
                   tags: Optional[Mapping[str, str]] = 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.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ContactProfileArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. ContactProfileArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ContactProfileArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ContactProfileArgs
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 contactProfileResource = new Azure.Orbital.ContactProfile("contactProfileResource", new()
{
    AutoTracking = "string",
    Links = new[]
    {
        new Azure.Orbital.Inputs.ContactProfileLinkArgs
        {
            Channels = new[]
            {
                new Azure.Orbital.Inputs.ContactProfileLinkChannelArgs
                {
                    BandwidthMhz = 0,
                    CenterFrequencyMhz = 0,
                    EndPoints = new[]
                    {
                        new Azure.Orbital.Inputs.ContactProfileLinkChannelEndPointArgs
                        {
                            EndPointName = "string",
                            Port = "string",
                            Protocol = "string",
                            IpAddress = "string",
                        },
                    },
                    Name = "string",
                    DemodulationConfiguration = "string",
                    ModulationConfiguration = "string",
                },
            },
            Direction = "string",
            Name = "string",
            Polarization = "string",
        },
    },
    MinimumVariableContactDuration = "string",
    NetworkConfigurationSubnetId = "string",
    ResourceGroupName = "string",
    EventHubUri = "string",
    Location = "string",
    MinimumElevationDegrees = 0,
    Name = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := orbital.NewContactProfile(ctx, "contactProfileResource", &orbital.ContactProfileArgs{
	AutoTracking: pulumi.String("string"),
	Links: orbital.ContactProfileLinkArray{
		&orbital.ContactProfileLinkArgs{
			Channels: orbital.ContactProfileLinkChannelArray{
				&orbital.ContactProfileLinkChannelArgs{
					BandwidthMhz:       pulumi.Float64(0),
					CenterFrequencyMhz: pulumi.Float64(0),
					EndPoints: orbital.ContactProfileLinkChannelEndPointArray{
						&orbital.ContactProfileLinkChannelEndPointArgs{
							EndPointName: pulumi.String("string"),
							Port:         pulumi.String("string"),
							Protocol:     pulumi.String("string"),
							IpAddress:    pulumi.String("string"),
						},
					},
					Name:                      pulumi.String("string"),
					DemodulationConfiguration: pulumi.String("string"),
					ModulationConfiguration:   pulumi.String("string"),
				},
			},
			Direction:    pulumi.String("string"),
			Name:         pulumi.String("string"),
			Polarization: pulumi.String("string"),
		},
	},
	MinimumVariableContactDuration: pulumi.String("string"),
	NetworkConfigurationSubnetId:   pulumi.String("string"),
	ResourceGroupName:              pulumi.String("string"),
	EventHubUri:                    pulumi.String("string"),
	Location:                       pulumi.String("string"),
	MinimumElevationDegrees:        pulumi.Float64(0),
	Name:                           pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var contactProfileResource = new ContactProfile("contactProfileResource", ContactProfileArgs.builder()
    .autoTracking("string")
    .links(ContactProfileLinkArgs.builder()
        .channels(ContactProfileLinkChannelArgs.builder()
            .bandwidthMhz(0)
            .centerFrequencyMhz(0)
            .endPoints(ContactProfileLinkChannelEndPointArgs.builder()
                .endPointName("string")
                .port("string")
                .protocol("string")
                .ipAddress("string")
                .build())
            .name("string")
            .demodulationConfiguration("string")
            .modulationConfiguration("string")
            .build())
        .direction("string")
        .name("string")
        .polarization("string")
        .build())
    .minimumVariableContactDuration("string")
    .networkConfigurationSubnetId("string")
    .resourceGroupName("string")
    .eventHubUri("string")
    .location("string")
    .minimumElevationDegrees(0)
    .name("string")
    .tags(Map.of("string", "string"))
    .build());
Copy
contact_profile_resource = azure.orbital.ContactProfile("contactProfileResource",
    auto_tracking="string",
    links=[{
        "channels": [{
            "bandwidth_mhz": 0,
            "center_frequency_mhz": 0,
            "end_points": [{
                "end_point_name": "string",
                "port": "string",
                "protocol": "string",
                "ip_address": "string",
            }],
            "name": "string",
            "demodulation_configuration": "string",
            "modulation_configuration": "string",
        }],
        "direction": "string",
        "name": "string",
        "polarization": "string",
    }],
    minimum_variable_contact_duration="string",
    network_configuration_subnet_id="string",
    resource_group_name="string",
    event_hub_uri="string",
    location="string",
    minimum_elevation_degrees=0,
    name="string",
    tags={
        "string": "string",
    })
Copy
const contactProfileResource = new azure.orbital.ContactProfile("contactProfileResource", {
    autoTracking: "string",
    links: [{
        channels: [{
            bandwidthMhz: 0,
            centerFrequencyMhz: 0,
            endPoints: [{
                endPointName: "string",
                port: "string",
                protocol: "string",
                ipAddress: "string",
            }],
            name: "string",
            demodulationConfiguration: "string",
            modulationConfiguration: "string",
        }],
        direction: "string",
        name: "string",
        polarization: "string",
    }],
    minimumVariableContactDuration: "string",
    networkConfigurationSubnetId: "string",
    resourceGroupName: "string",
    eventHubUri: "string",
    location: "string",
    minimumElevationDegrees: 0,
    name: "string",
    tags: {
        string: "string",
    },
});
Copy
type: azure:orbital:ContactProfile
properties:
    autoTracking: string
    eventHubUri: string
    links:
        - channels:
            - bandwidthMhz: 0
              centerFrequencyMhz: 0
              demodulationConfiguration: string
              endPoints:
                - endPointName: string
                  ipAddress: string
                  port: string
                  protocol: string
              modulationConfiguration: string
              name: string
          direction: string
          name: string
          polarization: string
    location: string
    minimumElevationDegrees: 0
    minimumVariableContactDuration: string
    name: string
    networkConfigurationSubnetId: string
    resourceGroupName: string
    tags:
        string: string
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The ContactProfile resource accepts the following input properties:

AutoTracking This property is required. string
Auto-tracking configurations for a spacecraft. Possible values are disabled, xBand and sBand.
Links
This property is required.
Changes to this property will trigger replacement.
List<ContactProfileLink>
A list of spacecraft links. A links block as defined below. Changing this forces a new resource to be created.
MinimumVariableContactDuration This property is required. string
Minimum viable contact duration in ISO 8601 format. Used for listing the available contacts with a spacecraft at a given ground station.
NetworkConfigurationSubnetId
This property is required.
Changes to this property will trigger replacement.
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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 This property is required. string
Auto-tracking configurations for a spacecraft. Possible values are disabled, xBand and sBand.
Links
This property is required.
Changes to this property will trigger replacement.
[]ContactProfileLinkArgs
A list of spacecraft links. A links block as defined below. Changing this forces a new resource to be created.
MinimumVariableContactDuration This property is required. string
Minimum viable contact duration in ISO 8601 format. Used for listing the available contacts with a spacecraft at a given ground station.
NetworkConfigurationSubnetId
This property is required.
Changes to this property will trigger replacement.
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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 This property is required. String
Auto-tracking configurations for a spacecraft. Possible values are disabled, xBand and sBand.
links
This property is required.
Changes to this property will trigger replacement.
List<ContactProfileLink>
A list of spacecraft links. A links block as defined below. Changing this forces a new resource to be created.
minimumVariableContactDuration This property is required. String
Minimum viable contact duration in ISO 8601 format. Used for listing the available contacts with a spacecraft at a given ground station.
networkConfigurationSubnetId
This property is required.
Changes to this property will trigger replacement.
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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 This property is required. string
Auto-tracking configurations for a spacecraft. Possible values are disabled, xBand and sBand.
links
This property is required.
Changes to this property will trigger replacement.
ContactProfileLink[]
A list of spacecraft links. A links block as defined below. Changing this forces a new resource to be created.
minimumVariableContactDuration This property is required. string
Minimum viable contact duration in ISO 8601 format. Used for listing the available contacts with a spacecraft at a given ground station.
networkConfigurationSubnetId
This property is required.
Changes to this property will trigger replacement.
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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 This property is required. str
Auto-tracking configurations for a spacecraft. Possible values are disabled, xBand and sBand.
links
This property is required.
Changes to this property will trigger replacement.
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 This property is required. 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
This property is required.
Changes to this property will trigger replacement.
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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 This property is required. String
Auto-tracking configurations for a spacecraft. Possible values are disabled, xBand and sBand.
links
This property is required.
Changes to this property will trigger replacement.
List<Property Map>
A list of spacecraft links. A links block as defined below. Changing this forces a new resource to be created.
minimumVariableContactDuration This property is required. String
Minimum viable contact duration in ISO 8601 format. Used for listing the available contacts with a spacecraft at a given ground station.
networkConfigurationSubnetId
This property is required.
Changes to this property will trigger replacement.
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
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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)
resources:  _:    type: azure:orbital:ContactProfile    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 Changes to this property will trigger replacement. List<ContactProfileLink>
A list of spacecraft links. A links block as defined below. Changing this forces a new resource to be created.
Location Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. string
The name of the contact profile. Changing this forces a new resource to be created.
NetworkConfigurationSubnetId Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. []ContactProfileLinkArgs
A list of spacecraft links. A links block as defined below. Changing this forces a new resource to be created.
Location Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. string
The name of the contact profile. Changing this forces a new resource to be created.
NetworkConfigurationSubnetId Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. List<ContactProfileLink>
A list of spacecraft links. A links block as defined below. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. String
The name of the contact profile. Changing this forces a new resource to be created.
networkConfigurationSubnetId Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. ContactProfileLink[]
A list of spacecraft links. A links block as defined below. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. string
The name of the contact profile. Changing this forces a new resource to be created.
networkConfigurationSubnetId Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. Sequence[ContactProfileLinkArgs]
A list of spacecraft links. A links block as defined below. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. str
The name of the contact profile. Changing this forces a new resource to be created.
network_configuration_subnet_id Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. List<Property Map>
A list of spacecraft links. A links block as defined below. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. String
The name of the contact profile. Changing this forces a new resource to be created.
networkConfigurationSubnetId Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 This property is required. List<ContactProfileLinkChannel>
A list of contact profile link channels. A channels block as defined below.
Direction This property is required. string
Direction of the link. Possible values are Uplink and Downlink.
Name This property is required. string
Name of the link.
Polarization This property is required. string
Polarization of the link. Possible values are LHCP, RHCP, linearVertical and linearHorizontal.
Channels This property is required. []ContactProfileLinkChannel
A list of contact profile link channels. A channels block as defined below.
Direction This property is required. string
Direction of the link. Possible values are Uplink and Downlink.
Name This property is required. string
Name of the link.
Polarization This property is required. string
Polarization of the link. Possible values are LHCP, RHCP, linearVertical and linearHorizontal.
channels This property is required. List<ContactProfileLinkChannel>
A list of contact profile link channels. A channels block as defined below.
direction This property is required. String
Direction of the link. Possible values are Uplink and Downlink.
name This property is required. String
Name of the link.
polarization This property is required. String
Polarization of the link. Possible values are LHCP, RHCP, linearVertical and linearHorizontal.
channels This property is required. ContactProfileLinkChannel[]
A list of contact profile link channels. A channels block as defined below.
direction This property is required. string
Direction of the link. Possible values are Uplink and Downlink.
name This property is required. string
Name of the link.
polarization This property is required. string
Polarization of the link. Possible values are LHCP, RHCP, linearVertical and linearHorizontal.
channels This property is required. Sequence[ContactProfileLinkChannel]
A list of contact profile link channels. A channels block as defined below.
direction This property is required. str
Direction of the link. Possible values are Uplink and Downlink.
name This property is required. str
Name of the link.
polarization This property is required. str
Polarization of the link. Possible values are LHCP, RHCP, linearVertical and linearHorizontal.
channels This property is required. List<Property Map>
A list of contact profile link channels. A channels block as defined below.
direction This property is required. String
Direction of the link. Possible values are Uplink and Downlink.
name This property is required. String
Name of the link.
polarization This property is required. String
Polarization of the link. Possible values are LHCP, RHCP, linearVertical and linearHorizontal.

ContactProfileLinkChannel
, ContactProfileLinkChannelArgs

BandwidthMhz This property is required. double
Bandwidth in MHz.
CenterFrequencyMhz This property is required. double
Center frequency in MHz.
EndPoints This property is required. List<ContactProfileLinkChannelEndPoint>
Customer End point to store/retrieve data during a contact. An end_point block as defined below.
Name This property is required. 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 This property is required. float64
Bandwidth in MHz.
CenterFrequencyMhz This property is required. float64
Center frequency in MHz.
EndPoints This property is required. []ContactProfileLinkChannelEndPoint
Customer End point to store/retrieve data during a contact. An end_point block as defined below.
Name This property is required. 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 This property is required. Double
Bandwidth in MHz.
centerFrequencyMhz This property is required. Double
Center frequency in MHz.
endPoints This property is required. List<ContactProfileLinkChannelEndPoint>
Customer End point to store/retrieve data during a contact. An end_point block as defined below.
name This property is required. 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 This property is required. number
Bandwidth in MHz.
centerFrequencyMhz This property is required. number
Center frequency in MHz.
endPoints This property is required. ContactProfileLinkChannelEndPoint[]
Customer End point to store/retrieve data during a contact. An end_point block as defined below.
name This property is required. 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 This property is required. float
Bandwidth in MHz.
center_frequency_mhz This property is required. float
Center frequency in MHz.
end_points This property is required. Sequence[ContactProfileLinkChannelEndPoint]
Customer End point to store/retrieve data during a contact. An end_point block as defined below.
name This property is required. 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 This property is required. Number
Bandwidth in MHz.
centerFrequencyMhz This property is required. Number
Center frequency in MHz.
endPoints This property is required. List<Property Map>
Customer End point to store/retrieve data during a contact. An end_point block as defined below.
name This property is required. 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
, ContactProfileLinkChannelEndPointArgs

EndPointName This property is required. string
Name of an end point.
Port This property is required. string
TCP port to listen on to receive data.
Protocol This property is required. string
Protocol of an end point. Possible values are TCP and UDP.
IpAddress string
IP address of an end point.
EndPointName This property is required. string
Name of an end point.
Port This property is required. string
TCP port to listen on to receive data.
Protocol This property is required. string
Protocol of an end point. Possible values are TCP and UDP.
IpAddress string
IP address of an end point.
endPointName This property is required. String
Name of an end point.
port This property is required. String
TCP port to listen on to receive data.
protocol This property is required. String
Protocol of an end point. Possible values are TCP and UDP.
ipAddress String
IP address of an end point.
endPointName This property is required. string
Name of an end point.
port This property is required. string
TCP port to listen on to receive data.
protocol This property is required. string
Protocol of an end point. Possible values are TCP and UDP.
ipAddress string
IP address of an end point.
end_point_name This property is required. str
Name of an end point.
port This property is required. str
TCP port to listen on to receive data.
protocol This property is required. str
Protocol of an end point. Possible values are TCP and UDP.
ip_address str
IP address of an end point.
endPointName This property is required. String
Name of an end point.
port This property is required. String
TCP port to listen on to receive data.
protocol This property is required. String
Protocol of an end point. Possible values are TCP and UDP.
ipAddress String
IP address of an end point.

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
Copy

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

Package Details

Repository
Azure Classic pulumi/pulumi-azure
License
Apache-2.0
Notes
This Pulumi package is based on the azurerm Terraform Provider.