@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 5.18 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
* Customer creates a contact resource for a spacecraft resource.
*
* Uses Azure REST API version 2022-11-01. In version 2.x of the Azure Native provider, it used API version 2022-11-01.
*/
export declare class Contact extends pulumi.CustomResource {
/**
* Get an existing Contact resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): Contact;
/**
* Returns true if the given object is an instance of Contact. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj: any): obj is Contact;
/**
* The configuration associated with the allocated antenna.
*/
readonly antennaConfiguration: pulumi.Output<outputs.orbital.ContactsPropertiesResponseAntennaConfiguration>;
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: pulumi.Output<string>;
/**
* The reference to the contact profile resource.
*/
readonly contactProfile: pulumi.Output<outputs.orbital.ContactsPropertiesResponseContactProfile>;
/**
* Azimuth of the antenna at the end of the contact in decimal degrees.
*/
readonly endAzimuthDegrees: pulumi.Output<number>;
/**
* Spacecraft elevation above the horizon at contact end.
*/
readonly endElevationDegrees: pulumi.Output<number>;
/**
* Any error message while scheduling a contact.
*/
readonly errorMessage: pulumi.Output<string>;
/**
* Azure Ground Station name.
*/
readonly groundStationName: pulumi.Output<string>;
/**
* Maximum elevation of the antenna during the contact in decimal degrees.
*/
readonly maximumElevationDegrees: pulumi.Output<number>;
/**
* The name of the resource
*/
readonly name: pulumi.Output<string>;
/**
* Reservation end time of a contact (ISO 8601 UTC standard).
*/
readonly reservationEndTime: pulumi.Output<string>;
/**
* Reservation start time of a contact (ISO 8601 UTC standard).
*/
readonly reservationStartTime: pulumi.Output<string>;
/**
* Receive end time of a contact (ISO 8601 UTC standard).
*/
readonly rxEndTime: pulumi.Output<string>;
/**
* Receive start time of a contact (ISO 8601 UTC standard).
*/
readonly rxStartTime: pulumi.Output<string>;
/**
* Azimuth of the antenna at the start of the contact in decimal degrees.
*/
readonly startAzimuthDegrees: pulumi.Output<number>;
/**
* Spacecraft elevation above the horizon at contact start.
*/
readonly startElevationDegrees: pulumi.Output<number>;
/**
* Status of a contact.
*/
readonly status: pulumi.Output<string>;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: pulumi.Output<outputs.orbital.SystemDataResponse>;
/**
* Transmit end time of a contact (ISO 8601 UTC standard).
*/
readonly txEndTime: pulumi.Output<string>;
/**
* Transmit start time of a contact (ISO 8601 UTC standard).
*/
readonly txStartTime: pulumi.Output<string>;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: pulumi.Output<string>;
/**
* Create a Contact resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args: ContactArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* The set of arguments for constructing a Contact resource.
*/
export interface ContactArgs {
/**
* Contact name.
*/
contactName?: pulumi.Input<string>;
/**
* The reference to the contact profile resource.
*/
contactProfile: pulumi.Input<inputs.orbital.ContactsPropertiesContactProfileArgs>;
/**
* Azure Ground Station name.
*/
groundStationName: pulumi.Input<string>;
/**
* Reservation end time of a contact (ISO 8601 UTC standard).
*/
reservationEndTime: pulumi.Input<string>;
/**
* Reservation start time of a contact (ISO 8601 UTC standard).
*/
reservationStartTime: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* Spacecraft ID.
*/
spacecraftName: pulumi.Input<string>;
}