1. Packages
  2. Azure Classic
  3. API Docs
  4. loganalytics
  5. DataSourceWindowsEvent

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

azure.loganalytics.DataSourceWindowsEvent

Explore with Pulumi AI

Manages a Log Analytics Windows Event DataSource.

Example Usage

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 exampleAnalyticsWorkspace = new azure.operationalinsights.AnalyticsWorkspace("example", {
    name: "example-law",
    location: example.location,
    resourceGroupName: example.name,
    sku: "PerGB2018",
});
const exampleDataSourceWindowsEvent = new azure.loganalytics.DataSourceWindowsEvent("example", {
    name: "example-lad-wpc",
    resourceGroupName: example.name,
    workspaceName: exampleAnalyticsWorkspace.name,
    eventLogName: "Application",
    eventTypes: ["Error"],
});
Copy
import pulumi
import pulumi_azure as azure

example = azure.core.ResourceGroup("example",
    name="example-resources",
    location="West Europe")
example_analytics_workspace = azure.operationalinsights.AnalyticsWorkspace("example",
    name="example-law",
    location=example.location,
    resource_group_name=example.name,
    sku="PerGB2018")
example_data_source_windows_event = azure.loganalytics.DataSourceWindowsEvent("example",
    name="example-lad-wpc",
    resource_group_name=example.name,
    workspace_name=example_analytics_workspace.name,
    event_log_name="Application",
    event_types=["Error"])
Copy
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/loganalytics"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/operationalinsights"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
			Name:     pulumi.String("example-resources"),
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		exampleAnalyticsWorkspace, err := operationalinsights.NewAnalyticsWorkspace(ctx, "example", &operationalinsights.AnalyticsWorkspaceArgs{
			Name:              pulumi.String("example-law"),
			Location:          example.Location,
			ResourceGroupName: example.Name,
			Sku:               pulumi.String("PerGB2018"),
		})
		if err != nil {
			return err
		}
		_, err = loganalytics.NewDataSourceWindowsEvent(ctx, "example", &loganalytics.DataSourceWindowsEventArgs{
			Name:              pulumi.String("example-lad-wpc"),
			ResourceGroupName: example.Name,
			WorkspaceName:     exampleAnalyticsWorkspace.Name,
			EventLogName:      pulumi.String("Application"),
			EventTypes: pulumi.StringArray{
				pulumi.String("Error"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var example = new Azure.Core.ResourceGroup("example", new()
    {
        Name = "example-resources",
        Location = "West Europe",
    });

    var exampleAnalyticsWorkspace = new Azure.OperationalInsights.AnalyticsWorkspace("example", new()
    {
        Name = "example-law",
        Location = example.Location,
        ResourceGroupName = example.Name,
        Sku = "PerGB2018",
    });

    var exampleDataSourceWindowsEvent = new Azure.LogAnalytics.DataSourceWindowsEvent("example", new()
    {
        Name = "example-lad-wpc",
        ResourceGroupName = example.Name,
        WorkspaceName = exampleAnalyticsWorkspace.Name,
        EventLogName = "Application",
        EventTypes = new[]
        {
            "Error",
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.operationalinsights.AnalyticsWorkspace;
import com.pulumi.azure.operationalinsights.AnalyticsWorkspaceArgs;
import com.pulumi.azure.loganalytics.DataSourceWindowsEvent;
import com.pulumi.azure.loganalytics.DataSourceWindowsEventArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var example = new ResourceGroup("example", ResourceGroupArgs.builder()
            .name("example-resources")
            .location("West Europe")
            .build());

        var exampleAnalyticsWorkspace = new AnalyticsWorkspace("exampleAnalyticsWorkspace", AnalyticsWorkspaceArgs.builder()
            .name("example-law")
            .location(example.location())
            .resourceGroupName(example.name())
            .sku("PerGB2018")
            .build());

        var exampleDataSourceWindowsEvent = new DataSourceWindowsEvent("exampleDataSourceWindowsEvent", DataSourceWindowsEventArgs.builder()
            .name("example-lad-wpc")
            .resourceGroupName(example.name())
            .workspaceName(exampleAnalyticsWorkspace.name())
            .eventLogName("Application")
            .eventTypes("Error")
            .build());

    }
}
Copy
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleAnalyticsWorkspace:
    type: azure:operationalinsights:AnalyticsWorkspace
    name: example
    properties:
      name: example-law
      location: ${example.location}
      resourceGroupName: ${example.name}
      sku: PerGB2018
  exampleDataSourceWindowsEvent:
    type: azure:loganalytics:DataSourceWindowsEvent
    name: example
    properties:
      name: example-lad-wpc
      resourceGroupName: ${example.name}
      workspaceName: ${exampleAnalyticsWorkspace.name}
      eventLogName: Application
      eventTypes:
        - Error
Copy

Create DataSourceWindowsEvent Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new DataSourceWindowsEvent(name: string, args: DataSourceWindowsEventArgs, opts?: CustomResourceOptions);
@overload
def DataSourceWindowsEvent(resource_name: str,
                           args: DataSourceWindowsEventArgs,
                           opts: Optional[ResourceOptions] = None)

@overload
def DataSourceWindowsEvent(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           event_log_name: Optional[str] = None,
                           event_types: Optional[Sequence[str]] = None,
                           resource_group_name: Optional[str] = None,
                           workspace_name: Optional[str] = None,
                           name: Optional[str] = None)
func NewDataSourceWindowsEvent(ctx *Context, name string, args DataSourceWindowsEventArgs, opts ...ResourceOption) (*DataSourceWindowsEvent, error)
public DataSourceWindowsEvent(string name, DataSourceWindowsEventArgs args, CustomResourceOptions? opts = null)
public DataSourceWindowsEvent(String name, DataSourceWindowsEventArgs args)
public DataSourceWindowsEvent(String name, DataSourceWindowsEventArgs args, CustomResourceOptions options)
type: azure:loganalytics:DataSourceWindowsEvent
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. DataSourceWindowsEventArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. DataSourceWindowsEventArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. DataSourceWindowsEventArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. DataSourceWindowsEventArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. DataSourceWindowsEventArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var dataSourceWindowsEventResource = new Azure.LogAnalytics.DataSourceWindowsEvent("dataSourceWindowsEventResource", new()
{
    EventLogName = "string",
    EventTypes = new[]
    {
        "string",
    },
    ResourceGroupName = "string",
    WorkspaceName = "string",
    Name = "string",
});
Copy
example, err := loganalytics.NewDataSourceWindowsEvent(ctx, "dataSourceWindowsEventResource", &loganalytics.DataSourceWindowsEventArgs{
	EventLogName: pulumi.String("string"),
	EventTypes: pulumi.StringArray{
		pulumi.String("string"),
	},
	ResourceGroupName: pulumi.String("string"),
	WorkspaceName:     pulumi.String("string"),
	Name:              pulumi.String("string"),
})
Copy
var dataSourceWindowsEventResource = new DataSourceWindowsEvent("dataSourceWindowsEventResource", DataSourceWindowsEventArgs.builder()
    .eventLogName("string")
    .eventTypes("string")
    .resourceGroupName("string")
    .workspaceName("string")
    .name("string")
    .build());
Copy
data_source_windows_event_resource = azure.loganalytics.DataSourceWindowsEvent("dataSourceWindowsEventResource",
    event_log_name="string",
    event_types=["string"],
    resource_group_name="string",
    workspace_name="string",
    name="string")
Copy
const dataSourceWindowsEventResource = new azure.loganalytics.DataSourceWindowsEvent("dataSourceWindowsEventResource", {
    eventLogName: "string",
    eventTypes: ["string"],
    resourceGroupName: "string",
    workspaceName: "string",
    name: "string",
});
Copy
type: azure:loganalytics:DataSourceWindowsEvent
properties:
    eventLogName: string
    eventTypes:
        - string
    name: string
    resourceGroupName: string
    workspaceName: string
Copy

DataSourceWindowsEvent Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The DataSourceWindowsEvent resource accepts the following input properties:

EventLogName This property is required. string
Specifies the name of the Windows Event Log to collect events from.
EventTypes This property is required. List<string>
Specifies an array of event types applied to the specified event log. Possible values include Error, Warning and Information.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Log Analytics Windows Event DataSource should exist. Changing this forces a new Log Analytics Windows Event DataSource to be created.
WorkspaceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Log Analytics Workspace where the Log Analytics Windows Event DataSource should exist. Changing this forces a new Log Analytics Windows Event DataSource to be created.
Name Changes to this property will trigger replacement. string
The name which should be used for this Log Analytics Windows Event DataSource. Changing this forces a new Log Analytics Windows Event DataSource to be created.
EventLogName This property is required. string
Specifies the name of the Windows Event Log to collect events from.
EventTypes This property is required. []string
Specifies an array of event types applied to the specified event log. Possible values include Error, Warning and Information.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Log Analytics Windows Event DataSource should exist. Changing this forces a new Log Analytics Windows Event DataSource to be created.
WorkspaceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Log Analytics Workspace where the Log Analytics Windows Event DataSource should exist. Changing this forces a new Log Analytics Windows Event DataSource to be created.
Name Changes to this property will trigger replacement. string
The name which should be used for this Log Analytics Windows Event DataSource. Changing this forces a new Log Analytics Windows Event DataSource to be created.
eventLogName This property is required. String
Specifies the name of the Windows Event Log to collect events from.
eventTypes This property is required. List<String>
Specifies an array of event types applied to the specified event log. Possible values include Error, Warning and Information.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Resource Group where the Log Analytics Windows Event DataSource should exist. Changing this forces a new Log Analytics Windows Event DataSource to be created.
workspaceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Log Analytics Workspace where the Log Analytics Windows Event DataSource should exist. Changing this forces a new Log Analytics Windows Event DataSource to be created.
name Changes to this property will trigger replacement. String
The name which should be used for this Log Analytics Windows Event DataSource. Changing this forces a new Log Analytics Windows Event DataSource to be created.
eventLogName This property is required. string
Specifies the name of the Windows Event Log to collect events from.
eventTypes This property is required. string[]
Specifies an array of event types applied to the specified event log. Possible values include Error, Warning and Information.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Log Analytics Windows Event DataSource should exist. Changing this forces a new Log Analytics Windows Event DataSource to be created.
workspaceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Log Analytics Workspace where the Log Analytics Windows Event DataSource should exist. Changing this forces a new Log Analytics Windows Event DataSource to be created.
name Changes to this property will trigger replacement. string
The name which should be used for this Log Analytics Windows Event DataSource. Changing this forces a new Log Analytics Windows Event DataSource to be created.
event_log_name This property is required. str
Specifies the name of the Windows Event Log to collect events from.
event_types This property is required. Sequence[str]
Specifies an array of event types applied to the specified event log. Possible values include Error, Warning and Information.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the Resource Group where the Log Analytics Windows Event DataSource should exist. Changing this forces a new Log Analytics Windows Event DataSource to be created.
workspace_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the Log Analytics Workspace where the Log Analytics Windows Event DataSource should exist. Changing this forces a new Log Analytics Windows Event DataSource to be created.
name Changes to this property will trigger replacement. str
The name which should be used for this Log Analytics Windows Event DataSource. Changing this forces a new Log Analytics Windows Event DataSource to be created.
eventLogName This property is required. String
Specifies the name of the Windows Event Log to collect events from.
eventTypes This property is required. List<String>
Specifies an array of event types applied to the specified event log. Possible values include Error, Warning and Information.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Resource Group where the Log Analytics Windows Event DataSource should exist. Changing this forces a new Log Analytics Windows Event DataSource to be created.
workspaceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Log Analytics Workspace where the Log Analytics Windows Event DataSource should exist. Changing this forces a new Log Analytics Windows Event DataSource to be created.
name Changes to this property will trigger replacement. String
The name which should be used for this Log Analytics Windows Event DataSource. Changing this forces a new Log Analytics Windows Event DataSource to be created.

Outputs

All input properties are implicitly available as output properties. Additionally, the DataSourceWindowsEvent resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing DataSourceWindowsEvent Resource

Get an existing DataSourceWindowsEvent resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: DataSourceWindowsEventState, opts?: CustomResourceOptions): DataSourceWindowsEvent
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        event_log_name: Optional[str] = None,
        event_types: Optional[Sequence[str]] = None,
        name: Optional[str] = None,
        resource_group_name: Optional[str] = None,
        workspace_name: Optional[str] = None) -> DataSourceWindowsEvent
func GetDataSourceWindowsEvent(ctx *Context, name string, id IDInput, state *DataSourceWindowsEventState, opts ...ResourceOption) (*DataSourceWindowsEvent, error)
public static DataSourceWindowsEvent Get(string name, Input<string> id, DataSourceWindowsEventState? state, CustomResourceOptions? opts = null)
public static DataSourceWindowsEvent get(String name, Output<String> id, DataSourceWindowsEventState state, CustomResourceOptions options)
resources:  _:    type: azure:loganalytics:DataSourceWindowsEvent    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
EventLogName string
Specifies the name of the Windows Event Log to collect events from.
EventTypes List<string>
Specifies an array of event types applied to the specified event log. Possible values include Error, Warning and Information.
Name Changes to this property will trigger replacement. string
The name which should be used for this Log Analytics Windows Event DataSource. Changing this forces a new Log Analytics Windows Event DataSource to be created.
ResourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the Log Analytics Windows Event DataSource should exist. Changing this forces a new Log Analytics Windows Event DataSource to be created.
WorkspaceName Changes to this property will trigger replacement. string
The name of the Log Analytics Workspace where the Log Analytics Windows Event DataSource should exist. Changing this forces a new Log Analytics Windows Event DataSource to be created.
EventLogName string
Specifies the name of the Windows Event Log to collect events from.
EventTypes []string
Specifies an array of event types applied to the specified event log. Possible values include Error, Warning and Information.
Name Changes to this property will trigger replacement. string
The name which should be used for this Log Analytics Windows Event DataSource. Changing this forces a new Log Analytics Windows Event DataSource to be created.
ResourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the Log Analytics Windows Event DataSource should exist. Changing this forces a new Log Analytics Windows Event DataSource to be created.
WorkspaceName Changes to this property will trigger replacement. string
The name of the Log Analytics Workspace where the Log Analytics Windows Event DataSource should exist. Changing this forces a new Log Analytics Windows Event DataSource to be created.
eventLogName String
Specifies the name of the Windows Event Log to collect events from.
eventTypes List<String>
Specifies an array of event types applied to the specified event log. Possible values include Error, Warning and Information.
name Changes to this property will trigger replacement. String
The name which should be used for this Log Analytics Windows Event DataSource. Changing this forces a new Log Analytics Windows Event DataSource to be created.
resourceGroupName Changes to this property will trigger replacement. String
The name of the Resource Group where the Log Analytics Windows Event DataSource should exist. Changing this forces a new Log Analytics Windows Event DataSource to be created.
workspaceName Changes to this property will trigger replacement. String
The name of the Log Analytics Workspace where the Log Analytics Windows Event DataSource should exist. Changing this forces a new Log Analytics Windows Event DataSource to be created.
eventLogName string
Specifies the name of the Windows Event Log to collect events from.
eventTypes string[]
Specifies an array of event types applied to the specified event log. Possible values include Error, Warning and Information.
name Changes to this property will trigger replacement. string
The name which should be used for this Log Analytics Windows Event DataSource. Changing this forces a new Log Analytics Windows Event DataSource to be created.
resourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the Log Analytics Windows Event DataSource should exist. Changing this forces a new Log Analytics Windows Event DataSource to be created.
workspaceName Changes to this property will trigger replacement. string
The name of the Log Analytics Workspace where the Log Analytics Windows Event DataSource should exist. Changing this forces a new Log Analytics Windows Event DataSource to be created.
event_log_name str
Specifies the name of the Windows Event Log to collect events from.
event_types Sequence[str]
Specifies an array of event types applied to the specified event log. Possible values include Error, Warning and Information.
name Changes to this property will trigger replacement. str
The name which should be used for this Log Analytics Windows Event DataSource. Changing this forces a new Log Analytics Windows Event DataSource to be created.
resource_group_name Changes to this property will trigger replacement. str
The name of the Resource Group where the Log Analytics Windows Event DataSource should exist. Changing this forces a new Log Analytics Windows Event DataSource to be created.
workspace_name Changes to this property will trigger replacement. str
The name of the Log Analytics Workspace where the Log Analytics Windows Event DataSource should exist. Changing this forces a new Log Analytics Windows Event DataSource to be created.
eventLogName String
Specifies the name of the Windows Event Log to collect events from.
eventTypes List<String>
Specifies an array of event types applied to the specified event log. Possible values include Error, Warning and Information.
name Changes to this property will trigger replacement. String
The name which should be used for this Log Analytics Windows Event DataSource. Changing this forces a new Log Analytics Windows Event DataSource to be created.
resourceGroupName Changes to this property will trigger replacement. String
The name of the Resource Group where the Log Analytics Windows Event DataSource should exist. Changing this forces a new Log Analytics Windows Event DataSource to be created.
workspaceName Changes to this property will trigger replacement. String
The name of the Log Analytics Workspace where the Log Analytics Windows Event DataSource should exist. Changing this forces a new Log Analytics Windows Event DataSource to be created.

Import

Log Analytics Windows Event DataSources can be imported using the resource id, e.g.

$ pulumi import azure:loganalytics/dataSourceWindowsEvent:DataSourceWindowsEvent example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.OperationalInsights/workspaces/workspace1/dataSources/datasource1
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Azure Classic pulumi/pulumi-azure
License
Apache-2.0
Notes
This Pulumi package is based on the azurerm Terraform Provider.