@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.58 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets the specified ground station in a specified resource group.
*
* Uses Azure REST API version 2024-03-01-preview.
*
* Other available API versions: 2024-03-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native orbital [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getGroundStation(args: GetGroundStationArgs, opts?: pulumi.InvokeOptions): Promise<GetGroundStationResult>;
export interface GetGroundStationArgs {
/**
* Ground Station name.
*/
groundStationName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* Ground Station contains one or more antennas.
*/
export interface GetGroundStationResult {
/**
* Altitude of the ground station.
*/
readonly altitudeMeters?: number;
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Ground station capabilities.
*/
readonly capabilities: string[];
/**
* City of ground station.
*/
readonly city?: string;
/**
* A reference to global communications site.
*/
readonly globalCommunicationsSite: outputs.orbital.GroundStationsPropertiesResponseGlobalCommunicationsSite;
/**
* Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
*/
readonly id: string;
/**
* Latitude of the ground station in decimal degrees.
*/
readonly latitudeDegrees?: number;
/**
* The geo-location where the resource lives
*/
readonly location: string;
/**
* Longitude of the ground station in decimal degrees.
*/
readonly longitudeDegrees?: number;
/**
* The name of the resource
*/
readonly name: string;
/**
* Ground station provider name.
*/
readonly providerName?: string;
/**
* Release Status of a ground station.
*/
readonly releaseMode: string;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.orbital.SystemDataResponse;
/**
* Resource tags.
*/
readonly tags?: {
[key: string]: string;
};
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Gets the specified ground station in a specified resource group.
*
* Uses Azure REST API version 2024-03-01-preview.
*
* Other available API versions: 2024-03-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native orbital [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getGroundStationOutput(args: GetGroundStationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGroundStationResult>;
export interface GetGroundStationOutputArgs {
/**
* Ground Station name.
*/
groundStationName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}