import type { PagedAsyncIterableIterator } from "@azure/core-paging"; import type { HubRouteTables } from "../operationsInterfaces/index.js"; import type { NetworkManagementClient } from "../networkManagementClient.js"; import type { SimplePollerLike, OperationState } from "@azure/core-lro"; import type { HubRouteTable, HubRouteTablesListOptionalParams, HubRouteTablesCreateOrUpdateOptionalParams, HubRouteTablesCreateOrUpdateResponse, HubRouteTablesGetOptionalParams, HubRouteTablesGetResponse, HubRouteTablesDeleteOptionalParams } from "../models/index.js"; /** Class containing HubRouteTables operations. */ export declare class HubRouteTablesImpl implements HubRouteTables { private readonly client; /** * Initialize a new instance of the class HubRouteTables class. * @param client Reference to the service client */ constructor(client: NetworkManagementClient); /** * Retrieves the details of all RouteTables. * @param resourceGroupName The resource group name of the VirtualHub. * @param virtualHubName The name of the VirtualHub. * @param options The options parameters. */ list(resourceGroupName: string, virtualHubName: string, options?: HubRouteTablesListOptionalParams): PagedAsyncIterableIterator; private listPagingPage; private listPagingAll; /** * Creates a RouteTable resource if it doesn't exist else updates the existing RouteTable. * @param resourceGroupName The resource group name of the VirtualHub. * @param virtualHubName The name of the VirtualHub. * @param routeTableName The name of the RouteTable. * @param routeTableParameters Parameters supplied to create or update RouteTable. * @param options The options parameters. */ beginCreateOrUpdate(resourceGroupName: string, virtualHubName: string, routeTableName: string, routeTableParameters: HubRouteTable, options?: HubRouteTablesCreateOrUpdateOptionalParams): Promise, HubRouteTablesCreateOrUpdateResponse>>; /** * Creates a RouteTable resource if it doesn't exist else updates the existing RouteTable. * @param resourceGroupName The resource group name of the VirtualHub. * @param virtualHubName The name of the VirtualHub. * @param routeTableName The name of the RouteTable. * @param routeTableParameters Parameters supplied to create or update RouteTable. * @param options The options parameters. */ beginCreateOrUpdateAndWait(resourceGroupName: string, virtualHubName: string, routeTableName: string, routeTableParameters: HubRouteTable, options?: HubRouteTablesCreateOrUpdateOptionalParams): Promise; /** * Retrieves the details of a RouteTable. * @param resourceGroupName The resource group name of the VirtualHub. * @param virtualHubName The name of the VirtualHub. * @param routeTableName The name of the RouteTable. * @param options The options parameters. */ get(resourceGroupName: string, virtualHubName: string, routeTableName: string, options?: HubRouteTablesGetOptionalParams): Promise; /** * Deletes a RouteTable. * @param resourceGroupName The resource group name of the RouteTable. * @param virtualHubName The name of the VirtualHub. * @param routeTableName The name of the RouteTable. * @param options The options parameters. */ beginDelete(resourceGroupName: string, virtualHubName: string, routeTableName: string, options?: HubRouteTablesDeleteOptionalParams): Promise, void>>; /** * Deletes a RouteTable. * @param resourceGroupName The resource group name of the RouteTable. * @param virtualHubName The name of the VirtualHub. * @param routeTableName The name of the RouteTable. * @param options The options parameters. */ beginDeleteAndWait(resourceGroupName: string, virtualHubName: string, routeTableName: string, options?: HubRouteTablesDeleteOptionalParams): Promise; /** * Retrieves the details of all RouteTables. * @param resourceGroupName The resource group name of the VirtualHub. * @param virtualHubName The name of the VirtualHub. * @param options The options parameters. */ private _list; /** * ListNext * @param resourceGroupName The resource group name of the VirtualHub. * @param virtualHubName The name of the VirtualHub. * @param nextLink The nextLink from the previous successful call to the List method. * @param options The options parameters. */ private _listNext; } //# sourceMappingURL=hubRouteTables.d.ts.map