We recommend using Azure Native.
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"],
});
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
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 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.
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",
});
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"),
})
var dataSourceWindowsEventResource = new DataSourceWindowsEvent("dataSourceWindowsEventResource", DataSourceWindowsEventArgs.builder()
.eventLogName("string")
.eventTypes("string")
.resourceGroupName("string")
.workspaceName("string")
.name("string")
.build());
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")
const dataSourceWindowsEventResource = new azure.loganalytics.DataSourceWindowsEvent("dataSourceWindowsEventResource", {
eventLogName: "string",
eventTypes: ["string"],
resourceGroupName: "string",
workspaceName: "string",
name: "string",
});
type: azure:loganalytics:DataSourceWindowsEvent
properties:
eventLogName: string
eventTypes:
- string
name: string
resourceGroupName: string
workspaceName: string
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:
- Event
Log stringName - Specifies the name of the Windows Event Log to collect events from.
- Event
Types List<string> - Specifies an array of event types applied to the specified event log. Possible values include
Error
,Warning
andInformation
. - Resource
Group stringName - 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 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 stringName - Specifies the name of the Windows Event Log to collect events from.
- Event
Types []string - Specifies an array of event types applied to the specified event log. Possible values include
Error
,Warning
andInformation
. - Resource
Group stringName - 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 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 StringName - Specifies the name of the Windows Event Log to collect events from.
- event
Types List<String> - Specifies an array of event types applied to the specified event log. Possible values include
Error
,Warning
andInformation
. - resource
Group StringName - 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 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 stringName - Specifies the name of the Windows Event Log to collect events from.
- event
Types string[] - Specifies an array of event types applied to the specified event log. Possible values include
Error
,Warning
andInformation
. - resource
Group stringName - 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 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_ strname - 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
andInformation
. - resource_
group_ strname - 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.
- event
Log StringName - Specifies the name of the Windows Event Log to collect events from.
- event
Types List<String> - Specifies an array of event types applied to the specified event log. Possible values include
Error
,Warning
andInformation
. - resource
Group StringName - 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 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.
- Event
Log stringName - Specifies the name of the Windows Event Log to collect events from.
- Event
Types List<string> - Specifies an array of event types applied to the specified event log. Possible values include
Error
,Warning
andInformation
. - 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.
- Resource
Group stringName - 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 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 stringName - Specifies the name of the Windows Event Log to collect events from.
- Event
Types []string - Specifies an array of event types applied to the specified event log. Possible values include
Error
,Warning
andInformation
. - 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.
- Resource
Group stringName - 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 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 StringName - Specifies the name of the Windows Event Log to collect events from.
- event
Types List<String> - Specifies an array of event types applied to the specified event log. Possible values include
Error
,Warning
andInformation
. - 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.
- resource
Group StringName - 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 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 stringName - Specifies the name of the Windows Event Log to collect events from.
- event
Types string[] - Specifies an array of event types applied to the specified event log. Possible values include
Error
,Warning
andInformation
. - 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.
- resource
Group stringName - 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 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_ strname - 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
andInformation
. - 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_ strname - 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.
- event
Log StringName - Specifies the name of the Windows Event Log to collect events from.
- event
Types List<String> - Specifies an array of event types applied to the specified event log. Possible values include
Error
,Warning
andInformation
. - 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.
- resource
Group StringName - 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 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
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.