import type { PagedAsyncIterableIterator } from "@azure/core-paging"; import type { SimplePollerLike, OperationState } from "@azure/core-lro"; import type { RouteMap, RouteMapsListOptionalParams, RouteMapsGetOptionalParams, RouteMapsGetResponse, RouteMapsCreateOrUpdateOptionalParams, RouteMapsCreateOrUpdateResponse, RouteMapsDeleteOptionalParams } from "../models/index.js"; /** Interface representing a RouteMaps. */ export interface RouteMaps { /** * Retrieves the details of all RouteMaps. * @param resourceGroupName The resource group name of the RouteMap's resource group'. * @param virtualHubName The name of the VirtualHub containing the RouteMap. * @param options The options parameters. */ list(resourceGroupName: string, virtualHubName: string, options?: RouteMapsListOptionalParams): PagedAsyncIterableIterator; /** * Retrieves the details of a RouteMap. * @param resourceGroupName The resource group name of the RouteMap's resource group. * @param virtualHubName The name of the VirtualHub containing the RouteMap. * @param routeMapName The name of the RouteMap. * @param options The options parameters. */ get(resourceGroupName: string, virtualHubName: string, routeMapName: string, options?: RouteMapsGetOptionalParams): Promise; /** * Creates a RouteMap if it doesn't exist else updates the existing one. * @param resourceGroupName The resource group name of the RouteMap's resource group. * @param virtualHubName The name of the VirtualHub containing the RouteMap. * @param routeMapName The name of the RouteMap. * @param routeMapParameters Parameters supplied to create or update a RouteMap. * @param options The options parameters. */ beginCreateOrUpdate(resourceGroupName: string, virtualHubName: string, routeMapName: string, routeMapParameters: RouteMap, options?: RouteMapsCreateOrUpdateOptionalParams): Promise, RouteMapsCreateOrUpdateResponse>>; /** * Creates a RouteMap if it doesn't exist else updates the existing one. * @param resourceGroupName The resource group name of the RouteMap's resource group. * @param virtualHubName The name of the VirtualHub containing the RouteMap. * @param routeMapName The name of the RouteMap. * @param routeMapParameters Parameters supplied to create or update a RouteMap. * @param options The options parameters. */ beginCreateOrUpdateAndWait(resourceGroupName: string, virtualHubName: string, routeMapName: string, routeMapParameters: RouteMap, options?: RouteMapsCreateOrUpdateOptionalParams): Promise; /** * Deletes a RouteMap. * @param resourceGroupName The resource group name of the RouteMap's resource group. * @param virtualHubName The name of the VirtualHub containing the RouteMap. * @param routeMapName The name of the RouteMap. * @param options The options parameters. */ beginDelete(resourceGroupName: string, virtualHubName: string, routeMapName: string, options?: RouteMapsDeleteOptionalParams): Promise, void>>; /** * Deletes a RouteMap. * @param resourceGroupName The resource group name of the RouteMap's resource group. * @param virtualHubName The name of the VirtualHub containing the RouteMap. * @param routeMapName The name of the RouteMap. * @param options The options parameters. */ beginDeleteAndWait(resourceGroupName: string, virtualHubName: string, routeMapName: string, options?: RouteMapsDeleteOptionalParams): Promise; } //# sourceMappingURL=routeMaps.d.ts.map