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

We recommend using Azure Native.

Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi

azure.loganalytics.DataSourceWindowsEvent

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi

    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"],
    });
    
    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"])
    
    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 {
    		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
    	})
    }
    
    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",
            },
        });
    
    });
    
    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());
    
        }
    }
    
    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
    

    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.
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi