@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.57 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets the specified contact Profile in a specified resource group.
*
* Uses Azure REST API version 2022-11-01.
*/
export declare function getContactProfile(args: GetContactProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetContactProfileResult>;
export interface GetContactProfileArgs {
/**
* Contact Profile name.
*/
contactProfileName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* Customer creates a Contact Profile Resource, which will contain all of the configurations required for scheduling a contact.
*/
export interface GetContactProfileResult {
/**
* Auto-tracking configuration.
*/
readonly autoTrackingConfiguration?: string;
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* ARM resource identifier of the Event Hub used for telemetry. Requires granting Orbital Resource Provider the rights to send telemetry into the hub.
*/
readonly eventHubUri?: string;
/**
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*/
readonly id: string;
/**
* Links of the Contact Profile. Describes RF links, modem processing, and IP endpoints.
*/
readonly links: outputs.orbital.ContactProfileLinkResponse[];
/**
* The geo-location where the resource lives
*/
readonly location: string;
/**
* Minimum viable elevation for the contact in decimal degrees. Used for listing the available contacts with a spacecraft at a given ground station.
*/
readonly minimumElevationDegrees?: number;
/**
* Minimum viable contact duration in ISO 8601 format. Used for listing the available contacts with a spacecraft at a given ground station.
*/
readonly minimumViableContactDuration?: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* Network configuration of customer virtual network.
*/
readonly networkConfiguration: outputs.orbital.ContactProfilesPropertiesResponseNetworkConfiguration;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.orbital.SystemDataResponse;
/**
* Resource tags.
*/
readonly tags?: {
[key: string]: string;
};
/**
* Third-party mission configuration of the Contact Profile. Describes RF links, modem processing, and IP endpoints.
*/
readonly thirdPartyConfigurations?: outputs.orbital.ContactProfileThirdPartyConfigurationResponse[];
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Gets the specified contact Profile in a specified resource group.
*
* Uses Azure REST API version 2022-11-01.
*/
export declare function getContactProfileOutput(args: GetContactProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetContactProfileResult>;
export interface GetContactProfileOutputArgs {
/**
* Contact Profile name.
*/
contactProfileName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}