import type { PagedAsyncIterableIterator } from "@azure/core-paging"; import type { ExpressRouteLink, ExpressRouteLinksListOptionalParams, ExpressRouteLinksGetOptionalParams, ExpressRouteLinksGetResponse } from "../models/index.js"; /** Interface representing a ExpressRouteLinks. */ export interface ExpressRouteLinks { /** * Retrieve the ExpressRouteLink sub-resources of the specified ExpressRoutePort resource. * @param resourceGroupName The name of the resource group. * @param expressRoutePortName The name of the ExpressRoutePort resource. * @param options The options parameters. */ list(resourceGroupName: string, expressRoutePortName: string, options?: ExpressRouteLinksListOptionalParams): PagedAsyncIterableIterator; /** * Retrieves the specified ExpressRouteLink resource. * @param resourceGroupName The name of the resource group. * @param expressRoutePortName The name of the ExpressRoutePort resource. * @param linkName The name of the ExpressRouteLink resource. * @param options The options parameters. */ get(resourceGroupName: string, expressRoutePortName: string, linkName: string, options?: ExpressRouteLinksGetOptionalParams): Promise; } //# sourceMappingURL=expressRouteLinks.d.ts.map