import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Network Watcher. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.network.getNetworkWatcher({ * name: exampleAzurermNetworkWatcher.name, * resourceGroupName: exampleAzurermResourceGroup.name, * }); * export const networkWatcherId = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Network` - 2025-01-01 */ export declare function getNetworkWatcher(args: GetNetworkWatcherArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getNetworkWatcher. */ export interface GetNetworkWatcherArgs { /** * Specifies the Name of the Network Watcher. */ name: string; /** * Specifies the Name of the Resource Group within which the Network Watcher exists. */ resourceGroupName: string; } /** * A collection of values returned by getNetworkWatcher. */ export interface GetNetworkWatcherResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The supported Azure location where the resource exists. */ readonly location: string; readonly name: string; readonly resourceGroupName: string; /** * A mapping of tags assigned to the resource. */ readonly tags: { [key: string]: string; }; } /** * Use this data source to access information about an existing Network Watcher. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.network.getNetworkWatcher({ * name: exampleAzurermNetworkWatcher.name, * resourceGroupName: exampleAzurermResourceGroup.name, * }); * export const networkWatcherId = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Network` - 2025-01-01 */ export declare function getNetworkWatcherOutput(args: GetNetworkWatcherOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getNetworkWatcher. */ export interface GetNetworkWatcherOutputArgs { /** * Specifies the Name of the Network Watcher. */ name: pulumi.Input; /** * Specifies the Name of the Resource Group within which the Network Watcher exists. */ resourceGroupName: pulumi.Input; }