import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Manages a Network Watcher Flow Log. * * > **Note:** The `azure.network.NetworkWatcherFlowLog` creates a new storage lifecyle management rule that overwrites existing rules. Please make sure to use a `storageAccount` with no existing management rules, until the issue is fixed. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "West Europe", * }); * const test = new azure.network.NetworkSecurityGroup("test", { * name: "acctestnsg", * location: example.location, * resourceGroupName: example.name, * }); * const testNetworkWatcher = new azure.network.NetworkWatcher("test", { * name: "acctestnw", * location: example.location, * resourceGroupName: example.name, * }); * const testAccount = new azure.storage.Account("test", { * name: "acctestsa", * resourceGroupName: example.name, * location: example.location, * accountTier: "Standard", * accountKind: "StorageV2", * accountReplicationType: "LRS", * httpsTrafficOnlyEnabled: true, * }); * const testAnalyticsWorkspace = new azure.operationalinsights.AnalyticsWorkspace("test", { * name: "acctestlaw", * location: example.location, * resourceGroupName: example.name, * sku: "PerGB2018", * }); * const testNetworkWatcherFlowLog = new azure.network.NetworkWatcherFlowLog("test", { * networkWatcherName: testNetworkWatcher.name, * resourceGroupName: example.name, * name: "example-log", * targetResourceId: test.id, * storageAccountId: testAccount.id, * enabled: true, * retentionPolicy: { * enabled: true, * days: 7, * }, * trafficAnalytics: { * enabled: true, * workspaceId: testAnalyticsWorkspace.workspaceId, * workspaceRegion: testAnalyticsWorkspace.location, * workspaceResourceId: testAnalyticsWorkspace.id, * intervalInMinutes: 10, * }, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.Network` - 2025-01-01 * * ## Import * * Network Watcher Flow Logs can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:network/networkWatcherFlowLog:NetworkWatcherFlowLog watcher1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/networkWatchers/watcher1/flowLogs/log1 * ``` */ export declare class NetworkWatcherFlowLog extends pulumi.CustomResource { /** * Get an existing NetworkWatcherFlowLog resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: NetworkWatcherFlowLogState, opts?: pulumi.CustomResourceOptions): NetworkWatcherFlowLog; /** * Returns true if the given object is an instance of NetworkWatcherFlowLog. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is NetworkWatcherFlowLog; /** * Should Network Flow Logging be Enabled? */ readonly enabled: pulumi.Output; /** * The location where the Network Watcher Flow Log resides. Changing this forces a new resource to be created. Defaults to the `location` of the Network Watcher. */ readonly location: pulumi.Output; /** * The name of the Network Watcher Flow Log. Changing this forces a new resource to be created. */ readonly name: pulumi.Output; /** * @deprecated The property `networkSecurityGroupId` has been superseded by `targetResourceId` and will be removed in version 5.0 of the AzureRM Provider. */ readonly networkSecurityGroupId: pulumi.Output; /** * The name of the Network Watcher. Changing this forces a new resource to be created. */ readonly networkWatcherName: pulumi.Output; /** * The name of the resource group in which the Network Watcher was deployed. Changing this forces a new resource to be created. */ readonly resourceGroupName: pulumi.Output; /** * A `retentionPolicy` block as documented below. */ readonly retentionPolicy: pulumi.Output; /** * The ID of the Storage Account where flow logs are stored. */ readonly storageAccountId: pulumi.Output; /** * A mapping of tags which should be assigned to the Network Watcher Flow Log. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * The ID of the Resource for which to enable flow logs for. * * > **Note:** As of July 30, 2025, it is no longer possible to create new flow logs for Network Security Groups. */ readonly targetResourceId: pulumi.Output; /** * A `trafficAnalytics` block as documented below. */ readonly trafficAnalytics: pulumi.Output; /** * The version (revision) of the flow log. Possible values are `1` and `2`. Defaults to `1`. */ readonly version: pulumi.Output; /** * Create a NetworkWatcherFlowLog resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: NetworkWatcherFlowLogArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering NetworkWatcherFlowLog resources. */ export interface NetworkWatcherFlowLogState { /** * Should Network Flow Logging be Enabled? */ enabled?: pulumi.Input; /** * The location where the Network Watcher Flow Log resides. Changing this forces a new resource to be created. Defaults to the `location` of the Network Watcher. */ location?: pulumi.Input; /** * The name of the Network Watcher Flow Log. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * @deprecated The property `networkSecurityGroupId` has been superseded by `targetResourceId` and will be removed in version 5.0 of the AzureRM Provider. */ networkSecurityGroupId?: pulumi.Input; /** * The name of the Network Watcher. Changing this forces a new resource to be created. */ networkWatcherName?: pulumi.Input; /** * The name of the resource group in which the Network Watcher was deployed. Changing this forces a new resource to be created. */ resourceGroupName?: pulumi.Input; /** * A `retentionPolicy` block as documented below. */ retentionPolicy?: pulumi.Input; /** * The ID of the Storage Account where flow logs are stored. */ storageAccountId?: pulumi.Input; /** * A mapping of tags which should be assigned to the Network Watcher Flow Log. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * The ID of the Resource for which to enable flow logs for. * * > **Note:** As of July 30, 2025, it is no longer possible to create new flow logs for Network Security Groups. */ targetResourceId?: pulumi.Input; /** * A `trafficAnalytics` block as documented below. */ trafficAnalytics?: pulumi.Input; /** * The version (revision) of the flow log. Possible values are `1` and `2`. Defaults to `1`. */ version?: pulumi.Input; } /** * The set of arguments for constructing a NetworkWatcherFlowLog resource. */ export interface NetworkWatcherFlowLogArgs { /** * Should Network Flow Logging be Enabled? */ enabled: pulumi.Input; /** * The location where the Network Watcher Flow Log resides. Changing this forces a new resource to be created. Defaults to the `location` of the Network Watcher. */ location?: pulumi.Input; /** * The name of the Network Watcher Flow Log. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * @deprecated The property `networkSecurityGroupId` has been superseded by `targetResourceId` and will be removed in version 5.0 of the AzureRM Provider. */ networkSecurityGroupId?: pulumi.Input; /** * The name of the Network Watcher. Changing this forces a new resource to be created. */ networkWatcherName: pulumi.Input; /** * The name of the resource group in which the Network Watcher was deployed. Changing this forces a new resource to be created. */ resourceGroupName: pulumi.Input; /** * A `retentionPolicy` block as documented below. */ retentionPolicy: pulumi.Input; /** * The ID of the Storage Account where flow logs are stored. */ storageAccountId: pulumi.Input; /** * A mapping of tags which should be assigned to the Network Watcher Flow Log. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * The ID of the Resource for which to enable flow logs for. * * > **Note:** As of July 30, 2025, it is no longer possible to create new flow logs for Network Security Groups. */ targetResourceId?: pulumi.Input; /** * A `trafficAnalytics` block as documented below. */ trafficAnalytics?: pulumi.Input; /** * The version (revision) of the flow log. Possible values are `1` and `2`. Defaults to `1`. */ version?: pulumi.Input; }