azure.loganalytics.DataSourceWindowsEvent

Manages a Log Analytics Windows Event DataSource.

Example Usage

using System.Collections.Generic;
using Pulumi;
using Azure = Pulumi.Azure;

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

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

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

});
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		exampleAnalyticsWorkspace, err := operationalinsights.NewAnalyticsWorkspace(ctx, "exampleAnalyticsWorkspace", &operationalinsights.AnalyticsWorkspaceArgs{
			Location:          exampleResourceGroup.Location,
			ResourceGroupName: exampleResourceGroup.Name,
			Sku:               pulumi.String("PerGB2018"),
		})
		if err != nil {
			return err
		}
		_, err = loganalytics.NewDataSourceWindowsEvent(ctx, "exampleDataSourceWindowsEvent", &loganalytics.DataSourceWindowsEventArgs{
			ResourceGroupName: exampleResourceGroup.Name,
			WorkspaceName:     exampleAnalyticsWorkspace.Name,
			EventLogName:      pulumi.String("Application"),
			EventTypes: pulumi.StringArray{
				pulumi.String("Error"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()        
            .location("West Europe")
            .build());

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

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

    }
}
import pulumi
import pulumi_azure as azure

example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_analytics_workspace = azure.operationalinsights.AnalyticsWorkspace("exampleAnalyticsWorkspace",
    location=example_resource_group.location,
    resource_group_name=example_resource_group.name,
    sku="PerGB2018")
example_data_source_windows_event = azure.loganalytics.DataSourceWindowsEvent("exampleDataSourceWindowsEvent",
    resource_group_name=example_resource_group.name,
    workspace_name=example_analytics_workspace.name,
    event_log_name="Application",
    event_types=["Error"])
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleAnalyticsWorkspace = new azure.operationalinsights.AnalyticsWorkspace("exampleAnalyticsWorkspace", {
    location: exampleResourceGroup.location,
    resourceGroupName: exampleResourceGroup.name,
    sku: "PerGB2018",
});
const exampleDataSourceWindowsEvent = new azure.loganalytics.DataSourceWindowsEvent("exampleDataSourceWindowsEvent", {
    resourceGroupName: exampleResourceGroup.name,
    workspaceName: exampleAnalyticsWorkspace.name,
    eventLogName: "Application",
    eventTypes: ["Error"],
});
resources:
  exampleResourceGroup:
    type: azure:core:ResourceGroup
    properties:
      location: West Europe
  exampleAnalyticsWorkspace:
    type: azure:operationalinsights:AnalyticsWorkspace
    properties:
      location: ${exampleResourceGroup.location}
      resourceGroupName: ${exampleResourceGroup.name}
      sku: PerGB2018
  exampleDataSourceWindowsEvent:
    type: azure:loganalytics:DataSourceWindowsEvent
    properties:
      resourceGroupName: ${exampleResourceGroup.name}
      workspaceName: ${exampleAnalyticsWorkspace.name}
      eventLogName: Application
      eventTypes:
        - Error

Create DataSourceWindowsEvent Resource

new DataSourceWindowsEvent(name: string, args: DataSourceWindowsEventArgs, opts?: CustomResourceOptions);
@overload
def DataSourceWindowsEvent(resource_name: 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)
@overload
def DataSourceWindowsEvent(resource_name: str,
                           args: DataSourceWindowsEventArgs,
                           opts: Optional[ResourceOptions] = 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.

name string
The unique name of the resource.
args DataSourceWindowsEventArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
args 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 string
The unique name of the resource.
args DataSourceWindowsEventArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args DataSourceWindowsEventArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args DataSourceWindowsEventArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

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

The DataSourceWindowsEvent resource accepts the following input properties:

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.

ResourceGroupName 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 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 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 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.

ResourceGroupName 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 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 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 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.

resourceGroupName 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 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 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 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.

resourceGroupName 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 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 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 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.

resource_group_name 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 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 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 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.

resourceGroupName 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 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 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)
Resource lookup is not supported in YAML
name
The unique name of the resulting resource.
id
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
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
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
The unique name of the resulting resource.
id
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
The unique name of the resulting resource.
id
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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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

Package Details

Repository
Azure Classic pulumi/pulumi-azure
License
Apache-2.0
Notes

This Pulumi package is based on the azurerm Terraform Provider.