azure-native.orbital.Contact
Explore with Pulumi AI
Customer creates a contact resource for a spacecraft resource. Azure REST API version: 2022-11-01.
Other available API versions: 2022-03-01.
Example Usage
Create a contact
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var contact = new AzureNative.Orbital.Contact("contact", new()
    {
        ContactName = "contact1",
        ContactProfile = new AzureNative.Orbital.Inputs.ContactsPropertiesContactProfileArgs
        {
            Id = "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/contoso-Rgp/providers/Microsoft.Orbital/contactProfiles/CONTOSO-CP",
        },
        GroundStationName = "EASTUS2_0",
        ReservationEndTime = "2023-02-22T11:10:45Z",
        ReservationStartTime = "2023-02-22T10:58:30Z",
        ResourceGroupName = "contoso-Rgp",
        SpacecraftName = "CONTOSO_SAT",
    });
});
package main
import (
	orbital "github.com/pulumi/pulumi-azure-native-sdk/orbital/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := orbital.NewContact(ctx, "contact", &orbital.ContactArgs{
			ContactName: pulumi.String("contact1"),
			ContactProfile: &orbital.ContactsPropertiesContactProfileArgs{
				Id: pulumi.String("/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/contoso-Rgp/providers/Microsoft.Orbital/contactProfiles/CONTOSO-CP"),
			},
			GroundStationName:    pulumi.String("EASTUS2_0"),
			ReservationEndTime:   pulumi.String("2023-02-22T11:10:45Z"),
			ReservationStartTime: pulumi.String("2023-02-22T10:58:30Z"),
			ResourceGroupName:    pulumi.String("contoso-Rgp"),
			SpacecraftName:       pulumi.String("CONTOSO_SAT"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.orbital.Contact;
import com.pulumi.azurenative.orbital.ContactArgs;
import com.pulumi.azurenative.orbital.inputs.ContactsPropertiesContactProfileArgs;
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 contact = new Contact("contact", ContactArgs.builder()
            .contactName("contact1")
            .contactProfile(ContactsPropertiesContactProfileArgs.builder()
                .id("/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/contoso-Rgp/providers/Microsoft.Orbital/contactProfiles/CONTOSO-CP")
                .build())
            .groundStationName("EASTUS2_0")
            .reservationEndTime("2023-02-22T11:10:45Z")
            .reservationStartTime("2023-02-22T10:58:30Z")
            .resourceGroupName("contoso-Rgp")
            .spacecraftName("CONTOSO_SAT")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const contact = new azure_native.orbital.Contact("contact", {
    contactName: "contact1",
    contactProfile: {
        id: "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/contoso-Rgp/providers/Microsoft.Orbital/contactProfiles/CONTOSO-CP",
    },
    groundStationName: "EASTUS2_0",
    reservationEndTime: "2023-02-22T11:10:45Z",
    reservationStartTime: "2023-02-22T10:58:30Z",
    resourceGroupName: "contoso-Rgp",
    spacecraftName: "CONTOSO_SAT",
});
import pulumi
import pulumi_azure_native as azure_native
contact = azure_native.orbital.Contact("contact",
    contact_name="contact1",
    contact_profile={
        "id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/contoso-Rgp/providers/Microsoft.Orbital/contactProfiles/CONTOSO-CP",
    },
    ground_station_name="EASTUS2_0",
    reservation_end_time="2023-02-22T11:10:45Z",
    reservation_start_time="2023-02-22T10:58:30Z",
    resource_group_name="contoso-Rgp",
    spacecraft_name="CONTOSO_SAT")
resources:
  contact:
    type: azure-native:orbital:Contact
    properties:
      contactName: contact1
      contactProfile:
        id: /subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/contoso-Rgp/providers/Microsoft.Orbital/contactProfiles/CONTOSO-CP
      groundStationName: EASTUS2_0
      reservationEndTime: 2023-02-22T11:10:45Z
      reservationStartTime: 2023-02-22T10:58:30Z
      resourceGroupName: contoso-Rgp
      spacecraftName: CONTOSO_SAT
Create Contact Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Contact(name: string, args: ContactArgs, opts?: CustomResourceOptions);@overload
def Contact(resource_name: str,
            args: ContactArgs,
            opts: Optional[ResourceOptions] = None)
@overload
def Contact(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            contact_profile: Optional[ContactsPropertiesContactProfileArgs] = None,
            ground_station_name: Optional[str] = None,
            reservation_end_time: Optional[str] = None,
            reservation_start_time: Optional[str] = None,
            resource_group_name: Optional[str] = None,
            spacecraft_name: Optional[str] = None,
            contact_name: Optional[str] = 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-native:orbital:Contact
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var contactResource = new AzureNative.Orbital.Contact("contactResource", new()
{
    ContactProfile = new AzureNative.Orbital.Inputs.ContactsPropertiesContactProfileArgs
    {
        Id = "string",
    },
    GroundStationName = "string",
    ReservationEndTime = "string",
    ReservationStartTime = "string",
    ResourceGroupName = "string",
    SpacecraftName = "string",
    ContactName = "string",
});
example, err := orbital.NewContact(ctx, "contactResource", &orbital.ContactArgs{
	ContactProfile: &orbital.ContactsPropertiesContactProfileArgs{
		Id: pulumi.String("string"),
	},
	GroundStationName:    pulumi.String("string"),
	ReservationEndTime:   pulumi.String("string"),
	ReservationStartTime: pulumi.String("string"),
	ResourceGroupName:    pulumi.String("string"),
	SpacecraftName:       pulumi.String("string"),
	ContactName:          pulumi.String("string"),
})
var contactResource = new Contact("contactResource", ContactArgs.builder()
    .contactProfile(ContactsPropertiesContactProfileArgs.builder()
        .id("string")
        .build())
    .groundStationName("string")
    .reservationEndTime("string")
    .reservationStartTime("string")
    .resourceGroupName("string")
    .spacecraftName("string")
    .contactName("string")
    .build());
contact_resource = azure_native.orbital.Contact("contactResource",
    contact_profile={
        "id": "string",
    },
    ground_station_name="string",
    reservation_end_time="string",
    reservation_start_time="string",
    resource_group_name="string",
    spacecraft_name="string",
    contact_name="string")
const contactResource = new azure_native.orbital.Contact("contactResource", {
    contactProfile: {
        id: "string",
    },
    groundStationName: "string",
    reservationEndTime: "string",
    reservationStartTime: "string",
    resourceGroupName: "string",
    spacecraftName: "string",
    contactName: "string",
});
type: azure-native:orbital:Contact
properties:
    contactName: string
    contactProfile:
        id: string
    groundStationName: string
    reservationEndTime: string
    reservationStartTime: string
    resourceGroupName: string
    spacecraftName: string
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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Contact resource accepts the following input properties:
- ContactProfile Pulumi.Azure Native. Orbital. Inputs. Contacts Properties Contact Profile 
- The reference to the contact profile resource.
- GroundStation stringName 
- Azure Ground Station name.
- ReservationEnd stringTime 
- Reservation end time of a contact (ISO 8601 UTC standard).
- ReservationStart stringTime 
- Reservation start time of a contact (ISO 8601 UTC standard).
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- SpacecraftName string
- Spacecraft ID.
- ContactName string
- Contact name.
- ContactProfile ContactsProperties Contact Profile Args 
- The reference to the contact profile resource.
- GroundStation stringName 
- Azure Ground Station name.
- ReservationEnd stringTime 
- Reservation end time of a contact (ISO 8601 UTC standard).
- ReservationStart stringTime 
- Reservation start time of a contact (ISO 8601 UTC standard).
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- SpacecraftName string
- Spacecraft ID.
- ContactName string
- Contact name.
- contactProfile ContactsProperties Contact Profile 
- The reference to the contact profile resource.
- groundStation StringName 
- Azure Ground Station name.
- reservationEnd StringTime 
- Reservation end time of a contact (ISO 8601 UTC standard).
- reservationStart StringTime 
- Reservation start time of a contact (ISO 8601 UTC standard).
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- spacecraftName String
- Spacecraft ID.
- contactName String
- Contact name.
- contactProfile ContactsProperties Contact Profile 
- The reference to the contact profile resource.
- groundStation stringName 
- Azure Ground Station name.
- reservationEnd stringTime 
- Reservation end time of a contact (ISO 8601 UTC standard).
- reservationStart stringTime 
- Reservation start time of a contact (ISO 8601 UTC standard).
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- spacecraftName string
- Spacecraft ID.
- contactName string
- Contact name.
- contact_profile ContactsProperties Contact Profile Args 
- The reference to the contact profile resource.
- ground_station_ strname 
- Azure Ground Station name.
- reservation_end_ strtime 
- Reservation end time of a contact (ISO 8601 UTC standard).
- reservation_start_ strtime 
- Reservation start time of a contact (ISO 8601 UTC standard).
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- spacecraft_name str
- Spacecraft ID.
- contact_name str
- Contact name.
- contactProfile Property Map
- The reference to the contact profile resource.
- groundStation StringName 
- Azure Ground Station name.
- reservationEnd StringTime 
- Reservation end time of a contact (ISO 8601 UTC standard).
- reservationStart StringTime 
- Reservation start time of a contact (ISO 8601 UTC standard).
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- spacecraftName String
- Spacecraft ID.
- contactName String
- Contact name.
Outputs
All input properties are implicitly available as output properties. Additionally, the Contact resource produces the following output properties:
- AntennaConfiguration Pulumi.Azure Native. Orbital. Outputs. Contacts Properties Response Antenna Configuration 
- The configuration associated with the allocated antenna.
- EndAzimuth doubleDegrees 
- Azimuth of the antenna at the end of the contact in decimal degrees.
- EndElevation doubleDegrees 
- Spacecraft elevation above the horizon at contact end.
- ErrorMessage string
- Any error message while scheduling a contact.
- Id string
- The provider-assigned unique ID for this managed resource.
- MaximumElevation doubleDegrees 
- Maximum elevation of the antenna during the contact in decimal degrees.
- Name string
- The name of the resource
- RxEnd stringTime 
- Receive end time of a contact (ISO 8601 UTC standard).
- RxStart stringTime 
- Receive start time of a contact (ISO 8601 UTC standard).
- StartAzimuth doubleDegrees 
- Azimuth of the antenna at the start of the contact in decimal degrees.
- StartElevation doubleDegrees 
- Spacecraft elevation above the horizon at contact start.
- Status string
- Status of a contact.
- SystemData Pulumi.Azure Native. Orbital. Outputs. System Data Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- TxEnd stringTime 
- Transmit end time of a contact (ISO 8601 UTC standard).
- TxStart stringTime 
- Transmit start time of a contact (ISO 8601 UTC standard).
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- AntennaConfiguration ContactsProperties Response Antenna Configuration 
- The configuration associated with the allocated antenna.
- EndAzimuth float64Degrees 
- Azimuth of the antenna at the end of the contact in decimal degrees.
- EndElevation float64Degrees 
- Spacecraft elevation above the horizon at contact end.
- ErrorMessage string
- Any error message while scheduling a contact.
- Id string
- The provider-assigned unique ID for this managed resource.
- MaximumElevation float64Degrees 
- Maximum elevation of the antenna during the contact in decimal degrees.
- Name string
- The name of the resource
- RxEnd stringTime 
- Receive end time of a contact (ISO 8601 UTC standard).
- RxStart stringTime 
- Receive start time of a contact (ISO 8601 UTC standard).
- StartAzimuth float64Degrees 
- Azimuth of the antenna at the start of the contact in decimal degrees.
- StartElevation float64Degrees 
- Spacecraft elevation above the horizon at contact start.
- Status string
- Status of a contact.
- SystemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- TxEnd stringTime 
- Transmit end time of a contact (ISO 8601 UTC standard).
- TxStart stringTime 
- Transmit start time of a contact (ISO 8601 UTC standard).
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- antennaConfiguration ContactsProperties Response Antenna Configuration 
- The configuration associated with the allocated antenna.
- endAzimuth DoubleDegrees 
- Azimuth of the antenna at the end of the contact in decimal degrees.
- endElevation DoubleDegrees 
- Spacecraft elevation above the horizon at contact end.
- errorMessage String
- Any error message while scheduling a contact.
- id String
- The provider-assigned unique ID for this managed resource.
- maximumElevation DoubleDegrees 
- Maximum elevation of the antenna during the contact in decimal degrees.
- name String
- The name of the resource
- rxEnd StringTime 
- Receive end time of a contact (ISO 8601 UTC standard).
- rxStart StringTime 
- Receive start time of a contact (ISO 8601 UTC standard).
- startAzimuth DoubleDegrees 
- Azimuth of the antenna at the start of the contact in decimal degrees.
- startElevation DoubleDegrees 
- Spacecraft elevation above the horizon at contact start.
- status String
- Status of a contact.
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- txEnd StringTime 
- Transmit end time of a contact (ISO 8601 UTC standard).
- txStart StringTime 
- Transmit start time of a contact (ISO 8601 UTC standard).
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- antennaConfiguration ContactsProperties Response Antenna Configuration 
- The configuration associated with the allocated antenna.
- endAzimuth numberDegrees 
- Azimuth of the antenna at the end of the contact in decimal degrees.
- endElevation numberDegrees 
- Spacecraft elevation above the horizon at contact end.
- errorMessage string
- Any error message while scheduling a contact.
- id string
- The provider-assigned unique ID for this managed resource.
- maximumElevation numberDegrees 
- Maximum elevation of the antenna during the contact in decimal degrees.
- name string
- The name of the resource
- rxEnd stringTime 
- Receive end time of a contact (ISO 8601 UTC standard).
- rxStart stringTime 
- Receive start time of a contact (ISO 8601 UTC standard).
- startAzimuth numberDegrees 
- Azimuth of the antenna at the start of the contact in decimal degrees.
- startElevation numberDegrees 
- Spacecraft elevation above the horizon at contact start.
- status string
- Status of a contact.
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- txEnd stringTime 
- Transmit end time of a contact (ISO 8601 UTC standard).
- txStart stringTime 
- Transmit start time of a contact (ISO 8601 UTC standard).
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- antenna_configuration ContactsProperties Response Antenna Configuration 
- The configuration associated with the allocated antenna.
- end_azimuth_ floatdegrees 
- Azimuth of the antenna at the end of the contact in decimal degrees.
- end_elevation_ floatdegrees 
- Spacecraft elevation above the horizon at contact end.
- error_message str
- Any error message while scheduling a contact.
- id str
- The provider-assigned unique ID for this managed resource.
- maximum_elevation_ floatdegrees 
- Maximum elevation of the antenna during the contact in decimal degrees.
- name str
- The name of the resource
- rx_end_ strtime 
- Receive end time of a contact (ISO 8601 UTC standard).
- rx_start_ strtime 
- Receive start time of a contact (ISO 8601 UTC standard).
- start_azimuth_ floatdegrees 
- Azimuth of the antenna at the start of the contact in decimal degrees.
- start_elevation_ floatdegrees 
- Spacecraft elevation above the horizon at contact start.
- status str
- Status of a contact.
- system_data SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- tx_end_ strtime 
- Transmit end time of a contact (ISO 8601 UTC standard).
- tx_start_ strtime 
- Transmit start time of a contact (ISO 8601 UTC standard).
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- antennaConfiguration Property Map
- The configuration associated with the allocated antenna.
- endAzimuth NumberDegrees 
- Azimuth of the antenna at the end of the contact in decimal degrees.
- endElevation NumberDegrees 
- Spacecraft elevation above the horizon at contact end.
- errorMessage String
- Any error message while scheduling a contact.
- id String
- The provider-assigned unique ID for this managed resource.
- maximumElevation NumberDegrees 
- Maximum elevation of the antenna during the contact in decimal degrees.
- name String
- The name of the resource
- rxEnd StringTime 
- Receive end time of a contact (ISO 8601 UTC standard).
- rxStart StringTime 
- Receive start time of a contact (ISO 8601 UTC standard).
- startAzimuth NumberDegrees 
- Azimuth of the antenna at the start of the contact in decimal degrees.
- startElevation NumberDegrees 
- Spacecraft elevation above the horizon at contact start.
- status String
- Status of a contact.
- systemData Property Map
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- txEnd StringTime 
- Transmit end time of a contact (ISO 8601 UTC standard).
- txStart StringTime 
- Transmit start time of a contact (ISO 8601 UTC standard).
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
ContactsPropertiesContactProfile, ContactsPropertiesContactProfileArgs        
- Id string
- Resource ID.
- Id string
- Resource ID.
- id String
- Resource ID.
- id string
- Resource ID.
- id str
- Resource ID.
- id String
- Resource ID.
ContactsPropertiesResponseAntennaConfiguration, ContactsPropertiesResponseAntennaConfigurationArgs          
- DestinationIp string
- The destination IP a packet can be sent to. This would for example be the TCP endpoint you would send data to.
- SourceIps List<string>
- List of Source IP
- DestinationIp string
- The destination IP a packet can be sent to. This would for example be the TCP endpoint you would send data to.
- SourceIps []string
- List of Source IP
- destinationIp String
- The destination IP a packet can be sent to. This would for example be the TCP endpoint you would send data to.
- sourceIps List<String>
- List of Source IP
- destinationIp string
- The destination IP a packet can be sent to. This would for example be the TCP endpoint you would send data to.
- sourceIps string[]
- List of Source IP
- destination_ip str
- The destination IP a packet can be sent to. This would for example be the TCP endpoint you would send data to.
- source_ips Sequence[str]
- List of Source IP
- destinationIp String
- The destination IP a packet can be sent to. This would for example be the TCP endpoint you would send data to.
- sourceIps List<String>
- List of Source IP
ContactsPropertiesResponseContactProfile, ContactsPropertiesResponseContactProfileArgs          
- Id string
- Resource ID.
- Id string
- Resource ID.
- id String
- Resource ID.
- id string
- Resource ID.
- id str
- Resource ID.
- id String
- Resource ID.
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:orbital:Contact contact1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Orbital/spacecrafts/{spacecraftName}/contacts/{contactName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0