import type { PagedAsyncIterableIterator } from "@azure/core-paging"; import type { ConnectionMonitors } from "../operationsInterfaces/index.js"; import type { NetworkManagementClient } from "../networkManagementClient.js"; import type { SimplePollerLike, OperationState } from "@azure/core-lro"; import type { ConnectionMonitorResult, ConnectionMonitorsListOptionalParams, ConnectionMonitor, ConnectionMonitorsCreateOrUpdateOptionalParams, ConnectionMonitorsCreateOrUpdateResponse, ConnectionMonitorsGetOptionalParams, ConnectionMonitorsGetResponse, ConnectionMonitorsDeleteOptionalParams, TagsObject, ConnectionMonitorsUpdateTagsOptionalParams, ConnectionMonitorsUpdateTagsResponse, ConnectionMonitorsStopOptionalParams } from "../models/index.js"; /** Class containing ConnectionMonitors operations. */ export declare class ConnectionMonitorsImpl implements ConnectionMonitors { private readonly client; /** * Initialize a new instance of the class ConnectionMonitors class. * @param client Reference to the service client */ constructor(client: NetworkManagementClient); /** * Lists all connection monitors for the specified Network Watcher. * @param resourceGroupName The name of the resource group containing Network Watcher. * @param networkWatcherName The name of the Network Watcher resource. * @param options The options parameters. */ list(resourceGroupName: string, networkWatcherName: string, options?: ConnectionMonitorsListOptionalParams): PagedAsyncIterableIterator; private listPagingPage; private listPagingAll; /** * Create or update a connection monitor. * @param resourceGroupName The name of the resource group containing Network Watcher. * @param networkWatcherName The name of the Network Watcher resource. * @param connectionMonitorName The name of the connection monitor. * @param parameters Parameters that define the operation to create a connection monitor. * @param options The options parameters. */ beginCreateOrUpdate(resourceGroupName: string, networkWatcherName: string, connectionMonitorName: string, parameters: ConnectionMonitor, options?: ConnectionMonitorsCreateOrUpdateOptionalParams): Promise, ConnectionMonitorsCreateOrUpdateResponse>>; /** * Create or update a connection monitor. * @param resourceGroupName The name of the resource group containing Network Watcher. * @param networkWatcherName The name of the Network Watcher resource. * @param connectionMonitorName The name of the connection monitor. * @param parameters Parameters that define the operation to create a connection monitor. * @param options The options parameters. */ beginCreateOrUpdateAndWait(resourceGroupName: string, networkWatcherName: string, connectionMonitorName: string, parameters: ConnectionMonitor, options?: ConnectionMonitorsCreateOrUpdateOptionalParams): Promise; /** * Gets a connection monitor by name. * @param resourceGroupName The name of the resource group containing Network Watcher. * @param networkWatcherName The name of the Network Watcher resource. * @param connectionMonitorName The name of the connection monitor. * @param options The options parameters. */ get(resourceGroupName: string, networkWatcherName: string, connectionMonitorName: string, options?: ConnectionMonitorsGetOptionalParams): Promise; /** * Deletes the specified connection monitor. * @param resourceGroupName The name of the resource group containing Network Watcher. * @param networkWatcherName The name of the Network Watcher resource. * @param connectionMonitorName The name of the connection monitor. * @param options The options parameters. */ beginDelete(resourceGroupName: string, networkWatcherName: string, connectionMonitorName: string, options?: ConnectionMonitorsDeleteOptionalParams): Promise, void>>; /** * Deletes the specified connection monitor. * @param resourceGroupName The name of the resource group containing Network Watcher. * @param networkWatcherName The name of the Network Watcher resource. * @param connectionMonitorName The name of the connection monitor. * @param options The options parameters. */ beginDeleteAndWait(resourceGroupName: string, networkWatcherName: string, connectionMonitorName: string, options?: ConnectionMonitorsDeleteOptionalParams): Promise; /** * Update tags of the specified connection monitor. * @param resourceGroupName The name of the resource group. * @param networkWatcherName The name of the network watcher. * @param connectionMonitorName The name of the connection monitor. * @param parameters Parameters supplied to update connection monitor tags. * @param options The options parameters. */ updateTags(resourceGroupName: string, networkWatcherName: string, connectionMonitorName: string, parameters: TagsObject, options?: ConnectionMonitorsUpdateTagsOptionalParams): Promise; /** * Stops the specified connection monitor. * @param resourceGroupName The name of the resource group containing Network Watcher. * @param networkWatcherName The name of the Network Watcher resource. * @param connectionMonitorName The name of the connection monitor. * @param options The options parameters. */ beginStop(resourceGroupName: string, networkWatcherName: string, connectionMonitorName: string, options?: ConnectionMonitorsStopOptionalParams): Promise, void>>; /** * Stops the specified connection monitor. * @param resourceGroupName The name of the resource group containing Network Watcher. * @param networkWatcherName The name of the Network Watcher resource. * @param connectionMonitorName The name of the connection monitor. * @param options The options parameters. */ beginStopAndWait(resourceGroupName: string, networkWatcherName: string, connectionMonitorName: string, options?: ConnectionMonitorsStopOptionalParams): Promise; /** * Lists all connection monitors for the specified Network Watcher. * @param resourceGroupName The name of the resource group containing Network Watcher. * @param networkWatcherName The name of the Network Watcher resource. * @param options The options parameters. */ private _list; } //# sourceMappingURL=connectionMonitors.d.ts.map