@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.6 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets the specified spacecraft in a specified resource group.
*
* Uses Azure REST API version 2022-11-01.
*/
export declare function getSpacecraft(args: GetSpacecraftArgs, opts?: pulumi.InvokeOptions): Promise<GetSpacecraftResult>;
export interface GetSpacecraftArgs {
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* Spacecraft ID.
*/
spacecraftName: string;
}
/**
* Customer creates a spacecraft resource to schedule a contact.
*/
export interface GetSpacecraftResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*/
readonly id: string;
/**
* Immutable list of Spacecraft links.
*/
readonly links: outputs.orbital.SpacecraftLinkResponse[];
/**
* The geo-location where the resource lives
*/
readonly location: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* NORAD ID of the spacecraft.
*/
readonly noradId?: string;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.orbital.SystemDataResponse;
/**
* Resource tags.
*/
readonly tags?: {
[key: string]: string;
};
/**
* Title line of the two-line element set (TLE).
*/
readonly titleLine: string;
/**
* Line 1 of the two-line element set (TLE).
*/
readonly tleLine1: string;
/**
* Line 2 of the two-line element set (TLE).
*/
readonly tleLine2: string;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Gets the specified spacecraft in a specified resource group.
*
* Uses Azure REST API version 2022-11-01.
*/
export declare function getSpacecraftOutput(args: GetSpacecraftOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSpacecraftResult>;
export interface GetSpacecraftOutputArgs {
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* Spacecraft ID.
*/
spacecraftName: pulumi.Input<string>;
}