We recommend using Azure Native.
azure.orbital.Contact
Explore with Pulumi AI
Manages an orbital contact.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
{
Location = "West Europe",
});
var exampleSpacecraft = new Azure.Orbital.Spacecraft("exampleSpacecraft", new()
{
ResourceGroupName = exampleResourceGroup.Name,
Location = "westeurope",
NoradId = "12345",
Links = new[]
{
new Azure.Orbital.Inputs.SpacecraftLinkArgs
{
BandwidthMhz = 100,
CenterFrequencyMhz = 101,
Direction = "Uplink",
Polarization = "LHCP",
Name = "examplename",
},
},
TwoLineElements = new[]
{
"1 23455U 94089A 97320.90946019 .00000140 00000-0 10191-3 0 2621",
"2 23455 99.0090 272.6745 0008546 223.1686 136.8816 14.11711747148495",
},
TitleLine = "AQUA",
Tags =
{
{ "aks-managed-cluster-name", "9a57225d-a405-4d40-aa46-f13d2342abef" },
},
});
var exampleVirtualNetwork = new Azure.Network.VirtualNetwork("exampleVirtualNetwork", new()
{
AddressSpaces = new[]
{
"10.0.0.0/16",
},
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.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 = exampleResourceGroup.Name,
Location = exampleResourceGroup.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 = "49153",
Protocol = "TCP",
},
},
},
},
Direction = "Uplink",
Name = "RHCP_UL",
Polarization = "RHCP",
},
},
NetworkConfigurationSubnetId = exampleSubnet.Id,
});
var exampleContact = new Azure.Orbital.Contact("exampleContact", new()
{
SpacecraftId = exampleSpacecraft.Id,
ReservationStartTime = "2020-07-16T20:35:00.00Z",
ReservationEndTime = "2020-07-16T20:55:00.00Z",
GroundStationName = "WESTUS2_0",
ContactProfileId = exampleContactProfile.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
}
exampleSpacecraft, err := orbital.NewSpacecraft(ctx, "exampleSpacecraft", &orbital.SpacecraftArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: pulumi.String("westeurope"),
NoradId: pulumi.String("12345"),
Links: orbital.SpacecraftLinkArray{
&orbital.SpacecraftLinkArgs{
BandwidthMhz: pulumi.Float64(100),
CenterFrequencyMhz: pulumi.Float64(101),
Direction: pulumi.String("Uplink"),
Polarization: pulumi.String("LHCP"),
Name: pulumi.String("examplename"),
},
},
TwoLineElements: pulumi.StringArray{
pulumi.String("1 23455U 94089A 97320.90946019 .00000140 00000-0 10191-3 0 2621"),
pulumi.String("2 23455 99.0090 272.6745 0008546 223.1686 136.8816 14.11711747148495"),
},
TitleLine: pulumi.String("AQUA"),
Tags: pulumi.StringMap{
"aks-managed-cluster-name": pulumi.String("9a57225d-a405-4d40-aa46-f13d2342abef"),
},
})
if err != nil {
return err
}
exampleVirtualNetwork, err := network.NewVirtualNetwork(ctx, "exampleVirtualNetwork", &network.VirtualNetworkArgs{
AddressSpaces: pulumi.StringArray{
pulumi.String("10.0.0.0/16"),
},
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.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
}
exampleContactProfile, err := orbital.NewContactProfile(ctx, "exampleContactProfile", &orbital.ContactProfileArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.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("49153"),
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
}
_, err = orbital.NewContact(ctx, "exampleContact", &orbital.ContactArgs{
SpacecraftId: exampleSpacecraft.ID(),
ReservationStartTime: pulumi.String("2020-07-16T20:35:00.00Z"),
ReservationEndTime: pulumi.String("2020-07-16T20:55:00.00Z"),
GroundStationName: pulumi.String("WESTUS2_0"),
ContactProfileId: exampleContactProfile.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.orbital.Spacecraft;
import com.pulumi.azure.orbital.SpacecraftArgs;
import com.pulumi.azure.orbital.inputs.SpacecraftLinkArgs;
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 com.pulumi.azure.orbital.Contact;
import com.pulumi.azure.orbital.ContactArgs;
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 exampleSpacecraft = new Spacecraft("exampleSpacecraft", SpacecraftArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.location("westeurope")
.noradId("12345")
.links(SpacecraftLinkArgs.builder()
.bandwidthMhz(100)
.centerFrequencyMhz(101)
.direction("Uplink")
.polarization("LHCP")
.name("examplename")
.build())
.twoLineElements(
"1 23455U 94089A 97320.90946019 .00000140 00000-0 10191-3 0 2621",
"2 23455 99.0090 272.6745 0008546 223.1686 136.8816 14.11711747148495")
.titleLine("AQUA")
.tags(Map.of("aks-managed-cluster-name", "9a57225d-a405-4d40-aa46-f13d2342abef"))
.build());
var exampleVirtualNetwork = new VirtualNetwork("exampleVirtualNetwork", VirtualNetworkArgs.builder()
.addressSpaces("10.0.0.0/16")
.location(exampleResourceGroup.location())
.resourceGroupName(exampleResourceGroup.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(exampleResourceGroup.name())
.location(exampleResourceGroup.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("49153")
.protocol("TCP")
.build())
.build())
.direction("Uplink")
.name("RHCP_UL")
.polarization("RHCP")
.build())
.networkConfigurationSubnetId(exampleSubnet.id())
.build());
var exampleContact = new Contact("exampleContact", ContactArgs.builder()
.spacecraftId(exampleSpacecraft.id())
.reservationStartTime("2020-07-16T20:35:00.00Z")
.reservationEndTime("2020-07-16T20:55:00.00Z")
.groundStationName("WESTUS2_0")
.contactProfileId(exampleContactProfile.id())
.build());
}
}
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_spacecraft = azure.orbital.Spacecraft("exampleSpacecraft",
resource_group_name=example_resource_group.name,
location="westeurope",
norad_id="12345",
links=[azure.orbital.SpacecraftLinkArgs(
bandwidth_mhz=100,
center_frequency_mhz=101,
direction="Uplink",
polarization="LHCP",
name="examplename",
)],
two_line_elements=[
"1 23455U 94089A 97320.90946019 .00000140 00000-0 10191-3 0 2621",
"2 23455 99.0090 272.6745 0008546 223.1686 136.8816 14.11711747148495",
],
title_line="AQUA",
tags={
"aks-managed-cluster-name": "9a57225d-a405-4d40-aa46-f13d2342abef",
})
example_virtual_network = azure.network.VirtualNetwork("exampleVirtualNetwork",
address_spaces=["10.0.0.0/16"],
location=example_resource_group.location,
resource_group_name=example_resource_group.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=example_resource_group.name,
location=example_resource_group.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="49153",
protocol="TCP",
)],
)],
direction="Uplink",
name="RHCP_UL",
polarization="RHCP",
)],
network_configuration_subnet_id=example_subnet.id)
example_contact = azure.orbital.Contact("exampleContact",
spacecraft_id=example_spacecraft.id,
reservation_start_time="2020-07-16T20:35:00.00Z",
reservation_end_time="2020-07-16T20:55:00.00Z",
ground_station_name="WESTUS2_0",
contact_profile_id=example_contact_profile.id)
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleSpacecraft = new azure.orbital.Spacecraft("exampleSpacecraft", {
resourceGroupName: exampleResourceGroup.name,
location: "westeurope",
noradId: "12345",
links: [{
bandwidthMhz: 100,
centerFrequencyMhz: 101,
direction: "Uplink",
polarization: "LHCP",
name: "examplename",
}],
twoLineElements: [
"1 23455U 94089A 97320.90946019 .00000140 00000-0 10191-3 0 2621",
"2 23455 99.0090 272.6745 0008546 223.1686 136.8816 14.11711747148495",
],
titleLine: "AQUA",
tags: {
"aks-managed-cluster-name": "9a57225d-a405-4d40-aa46-f13d2342abef",
},
});
const exampleVirtualNetwork = new azure.network.VirtualNetwork("exampleVirtualNetwork", {
addressSpaces: ["10.0.0.0/16"],
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.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: exampleResourceGroup.name,
location: exampleResourceGroup.location,
minimumVariableContactDuration: "PT1M",
autoTracking: "disabled",
links: [{
channels: [{
name: "channelname",
bandwidthMhz: 100,
centerFrequencyMhz: 101,
endPoints: [{
endPointName: "AQUA_command",
ipAddress: "10.0.1.0",
port: "49153",
protocol: "TCP",
}],
}],
direction: "Uplink",
name: "RHCP_UL",
polarization: "RHCP",
}],
networkConfigurationSubnetId: exampleSubnet.id,
});
const exampleContact = new azure.orbital.Contact("exampleContact", {
spacecraftId: exampleSpacecraft.id,
reservationStartTime: "2020-07-16T20:35:00.00Z",
reservationEndTime: "2020-07-16T20:55:00.00Z",
groundStationName: "WESTUS2_0",
contactProfileId: exampleContactProfile.id,
});
resources:
exampleResourceGroup:
type: azure:core:ResourceGroup
properties:
location: West Europe
exampleSpacecraft:
type: azure:orbital:Spacecraft
properties:
resourceGroupName: ${exampleResourceGroup.name}
location: westeurope
noradId: '12345'
links:
- bandwidthMhz: 100
centerFrequencyMhz: 101
direction: Uplink
polarization: LHCP
name: examplename
twoLineElements:
- 1 23455U 94089A 97320.90946019 .00000140 00000-0 10191-3 0 2621
- 2 23455 99.0090 272.6745 0008546 223.1686 136.8816 14.11711747148495
titleLine: AQUA
tags:
aks-managed-cluster-name: 9a57225d-a405-4d40-aa46-f13d2342abef
exampleVirtualNetwork:
type: azure:network:VirtualNetwork
properties:
addressSpaces:
- 10.0.0.0/16
location: ${exampleResourceGroup.location}
resourceGroupName: ${exampleResourceGroup.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: ${exampleResourceGroup.name}
location: ${exampleResourceGroup.location}
minimumVariableContactDuration: PT1M
autoTracking: disabled
links:
- channels:
- name: channelname
bandwidthMhz: 100
centerFrequencyMhz: 101
endPoints:
- endPointName: AQUA_command
ipAddress: 10.0.1.0
port: '49153'
protocol: TCP
direction: Uplink
name: RHCP_UL
polarization: RHCP
networkConfigurationSubnetId: ${exampleSubnet.id}
exampleContact:
type: azure:orbital:Contact
properties:
spacecraftId: ${exampleSpacecraft.id}
reservationStartTime: 2020-07-16T20:35:00.00Z
reservationEndTime: 2020-07-16T20:55:00.00Z
groundStationName: WESTUS2_0
contactProfileId: ${exampleContactProfile.id}
Create Contact Resource
new Contact(name: string, args: ContactArgs, opts?: CustomResourceOptions);
@overload
def Contact(resource_name: str,
opts: Optional[ResourceOptions] = None,
contact_profile_id: Optional[str] = None,
ground_station_name: Optional[str] = None,
name: Optional[str] = None,
reservation_end_time: Optional[str] = None,
reservation_start_time: Optional[str] = None,
spacecraft_id: Optional[str] = None)
@overload
def Contact(resource_name: str,
args: ContactArgs,
opts: Optional[ResourceOptions] = None)
func NewContact(ctx *Context, name string, args ContactArgs, opts ...ResourceOption) (*Contact, error)
public Contact(string name, ContactArgs args, CustomResourceOptions? opts = null)
public Contact(String name, ContactArgs args)
public Contact(String name, ContactArgs args, CustomResourceOptions options)
type: azure:orbital:Contact
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ContactArgs
- 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 ContactArgs
- 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 ContactArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ContactArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ContactArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Contact 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 Contact resource accepts the following input properties:
- Contact
Profile stringId ID of the orbital contact profile. Changing this forces a new resource to be created.
- Ground
Station stringName Name of the Azure ground station. Changing this forces a new resource to be created.
- Reservation
End stringTime Reservation end time of the Contact. Changing this forces a new resource to be created.
- Reservation
Start stringTime Reservation start time of the Contact. Changing this forces a new resource to be created.
- Spacecraft
Id string The ID of the spacecraft which the contact will be made to. Changing this forces a new resource to be created.
- Name string
The name of the Contact. Changing this forces a new resource to be created. Changing this forces a new resource to be created.
- Contact
Profile stringId ID of the orbital contact profile. Changing this forces a new resource to be created.
- Ground
Station stringName Name of the Azure ground station. Changing this forces a new resource to be created.
- Reservation
End stringTime Reservation end time of the Contact. Changing this forces a new resource to be created.
- Reservation
Start stringTime Reservation start time of the Contact. Changing this forces a new resource to be created.
- Spacecraft
Id string The ID of the spacecraft which the contact will be made to. Changing this forces a new resource to be created.
- Name string
The name of the Contact. Changing this forces a new resource to be created. Changing this forces a new resource to be created.
- contact
Profile StringId ID of the orbital contact profile. Changing this forces a new resource to be created.
- ground
Station StringName Name of the Azure ground station. Changing this forces a new resource to be created.
- reservation
End StringTime Reservation end time of the Contact. Changing this forces a new resource to be created.
- reservation
Start StringTime Reservation start time of the Contact. Changing this forces a new resource to be created.
- spacecraft
Id String The ID of the spacecraft which the contact will be made to. Changing this forces a new resource to be created.
- name String
The name of the Contact. Changing this forces a new resource to be created. Changing this forces a new resource to be created.
- contact
Profile stringId ID of the orbital contact profile. Changing this forces a new resource to be created.
- ground
Station stringName Name of the Azure ground station. Changing this forces a new resource to be created.
- reservation
End stringTime Reservation end time of the Contact. Changing this forces a new resource to be created.
- reservation
Start stringTime Reservation start time of the Contact. Changing this forces a new resource to be created.
- spacecraft
Id string The ID of the spacecraft which the contact will be made to. Changing this forces a new resource to be created.
- name string
The name of the Contact. Changing this forces a new resource to be created. Changing this forces a new resource to be created.
- contact_
profile_ strid ID of the orbital contact profile. Changing this forces a new resource to be created.
- ground_
station_ strname Name of the Azure ground station. Changing this forces a new resource to be created.
- reservation_
end_ strtime Reservation end time of the Contact. Changing this forces a new resource to be created.
- reservation_
start_ strtime Reservation start time of the Contact. Changing this forces a new resource to be created.
- spacecraft_
id str The ID of the spacecraft which the contact will be made to. Changing this forces a new resource to be created.
- name str
The name of the Contact. Changing this forces a new resource to be created. Changing this forces a new resource to be created.
- contact
Profile StringId ID of the orbital contact profile. Changing this forces a new resource to be created.
- ground
Station StringName Name of the Azure ground station. Changing this forces a new resource to be created.
- reservation
End StringTime Reservation end time of the Contact. Changing this forces a new resource to be created.
- reservation
Start StringTime Reservation start time of the Contact. Changing this forces a new resource to be created.
- spacecraft
Id String The ID of the spacecraft which the contact will be made to. Changing this forces a new resource to be created.
- name String
The name of the Contact. Changing this forces a new resource to be created. Changing this forces a new resource to be created.
Outputs
All input properties are implicitly available as output properties. Additionally, the Contact 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 Contact Resource
Get an existing Contact 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?: ContactState, opts?: CustomResourceOptions): Contact
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
contact_profile_id: Optional[str] = None,
ground_station_name: Optional[str] = None,
name: Optional[str] = None,
reservation_end_time: Optional[str] = None,
reservation_start_time: Optional[str] = None,
spacecraft_id: Optional[str] = None) -> Contact
func GetContact(ctx *Context, name string, id IDInput, state *ContactState, opts ...ResourceOption) (*Contact, error)
public static Contact Get(string name, Input<string> id, ContactState? state, CustomResourceOptions? opts = null)
public static Contact get(String name, Output<String> id, ContactState 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.
- Contact
Profile stringId ID of the orbital contact profile. Changing this forces a new resource to be created.
- Ground
Station stringName Name of the Azure ground station. Changing this forces a new resource to be created.
- Name string
The name of the Contact. Changing this forces a new resource to be created. Changing this forces a new resource to be created.
- Reservation
End stringTime Reservation end time of the Contact. Changing this forces a new resource to be created.
- Reservation
Start stringTime Reservation start time of the Contact. Changing this forces a new resource to be created.
- Spacecraft
Id string The ID of the spacecraft which the contact will be made to. Changing this forces a new resource to be created.
- Contact
Profile stringId ID of the orbital contact profile. Changing this forces a new resource to be created.
- Ground
Station stringName Name of the Azure ground station. Changing this forces a new resource to be created.
- Name string
The name of the Contact. Changing this forces a new resource to be created. Changing this forces a new resource to be created.
- Reservation
End stringTime Reservation end time of the Contact. Changing this forces a new resource to be created.
- Reservation
Start stringTime Reservation start time of the Contact. Changing this forces a new resource to be created.
- Spacecraft
Id string The ID of the spacecraft which the contact will be made to. Changing this forces a new resource to be created.
- contact
Profile StringId ID of the orbital contact profile. Changing this forces a new resource to be created.
- ground
Station StringName Name of the Azure ground station. Changing this forces a new resource to be created.
- name String
The name of the Contact. Changing this forces a new resource to be created. Changing this forces a new resource to be created.
- reservation
End StringTime Reservation end time of the Contact. Changing this forces a new resource to be created.
- reservation
Start StringTime Reservation start time of the Contact. Changing this forces a new resource to be created.
- spacecraft
Id String The ID of the spacecraft which the contact will be made to. Changing this forces a new resource to be created.
- contact
Profile stringId ID of the orbital contact profile. Changing this forces a new resource to be created.
- ground
Station stringName Name of the Azure ground station. Changing this forces a new resource to be created.
- name string
The name of the Contact. Changing this forces a new resource to be created. Changing this forces a new resource to be created.
- reservation
End stringTime Reservation end time of the Contact. Changing this forces a new resource to be created.
- reservation
Start stringTime Reservation start time of the Contact. Changing this forces a new resource to be created.
- spacecraft
Id string The ID of the spacecraft which the contact will be made to. Changing this forces a new resource to be created.
- contact_
profile_ strid ID of the orbital contact profile. Changing this forces a new resource to be created.
- ground_
station_ strname Name of the Azure ground station. Changing this forces a new resource to be created.
- name str
The name of the Contact. Changing this forces a new resource to be created. Changing this forces a new resource to be created.
- reservation_
end_ strtime Reservation end time of the Contact. Changing this forces a new resource to be created.
- reservation_
start_ strtime Reservation start time of the Contact. Changing this forces a new resource to be created.
- spacecraft_
id str The ID of the spacecraft which the contact will be made to. Changing this forces a new resource to be created.
- contact
Profile StringId ID of the orbital contact profile. Changing this forces a new resource to be created.
- ground
Station StringName Name of the Azure ground station. Changing this forces a new resource to be created.
- name String
The name of the Contact. Changing this forces a new resource to be created. Changing this forces a new resource to be created.
- reservation
End StringTime Reservation end time of the Contact. Changing this forces a new resource to be created.
- reservation
Start StringTime Reservation start time of the Contact. Changing this forces a new resource to be created.
- spacecraft
Id String The ID of the spacecraft which the contact will be made to. Changing this forces a new resource to be created.
Import
Spacecraft can be imported using the resource id
, e.g.
$ pulumi import azure:orbital/contact:Contact example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Orbital/spacecrafts/spacecraft1/contacts/contact1
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
azurerm
Terraform Provider.