@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.22 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Returns a list of L2 Connections attached to an ground station.
*
* 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 listGroundStationL2Connections(args: ListGroundStationL2ConnectionsArgs, opts?: pulumi.InvokeOptions): Promise<ListGroundStationL2ConnectionsResult>;
export interface ListGroundStationL2ConnectionsArgs {
/**
* Ground Station name.
*/
groundStationName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* Response for an API service call that lists the resource IDs of resources associated with another resource.
*/
export interface ListGroundStationL2ConnectionsResult {
/**
* The URL to get the next set of results.
*/
readonly nextLink: string;
/**
* A list of Azure Resource IDs.
*/
readonly value?: outputs.orbital.ResourceIdListResultResponseValue[];
}
/**
* Returns a list of L2 Connections attached to an ground station.
*
* 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 listGroundStationL2ConnectionsOutput(args: ListGroundStationL2ConnectionsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListGroundStationL2ConnectionsResult>;
export interface ListGroundStationL2ConnectionsOutputArgs {
/**
* Ground Station name.
*/
groundStationName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}