com.pulumi.azure.monitoring.outputs.DataCollectionRuleDataSourcesWindowsEventLog Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azure.monitoring.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
@CustomType
public final class DataCollectionRuleDataSourcesWindowsEventLog {
/**
* @return The name which should be used for this data source. This name should be unique across all data sources regardless of type within the Data Collection Rule.
*
*/
private String name;
/**
* @return Specifies a list of streams that this data source will be sent to. A stream indicates what schema will be used for this data and usually what table in Log Analytics the data will be sent to. Possible values include but not limited to `Microsoft-Event`,and `Microsoft-WindowsEvent`, `Microsoft-RomeDetectionEvent`, and `Microsoft-SecurityEvent`.
*
*/
private List streams;
/**
* @return Specifies a list of Windows Event Log queries in XPath expression. Please see [this document](https://learn.microsoft.com/en-us/azure/azure-monitor/agents/data-collection-rule-azure-monitor-agent?tabs=cli#filter-events-using-xpath-queries) for more information.
*
*/
private List xPathQueries;
private DataCollectionRuleDataSourcesWindowsEventLog() {}
/**
* @return The name which should be used for this data source. This name should be unique across all data sources regardless of type within the Data Collection Rule.
*
*/
public String name() {
return this.name;
}
/**
* @return Specifies a list of streams that this data source will be sent to. A stream indicates what schema will be used for this data and usually what table in Log Analytics the data will be sent to. Possible values include but not limited to `Microsoft-Event`,and `Microsoft-WindowsEvent`, `Microsoft-RomeDetectionEvent`, and `Microsoft-SecurityEvent`.
*
*/
public List streams() {
return this.streams;
}
/**
* @return Specifies a list of Windows Event Log queries in XPath expression. Please see [this document](https://learn.microsoft.com/en-us/azure/azure-monitor/agents/data-collection-rule-azure-monitor-agent?tabs=cli#filter-events-using-xpath-queries) for more information.
*
*/
public List xPathQueries() {
return this.xPathQueries;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DataCollectionRuleDataSourcesWindowsEventLog defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String name;
private List streams;
private List xPathQueries;
public Builder() {}
public Builder(DataCollectionRuleDataSourcesWindowsEventLog defaults) {
Objects.requireNonNull(defaults);
this.name = defaults.name;
this.streams = defaults.streams;
this.xPathQueries = defaults.xPathQueries;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("DataCollectionRuleDataSourcesWindowsEventLog", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder streams(List streams) {
if (streams == null) {
throw new MissingRequiredPropertyException("DataCollectionRuleDataSourcesWindowsEventLog", "streams");
}
this.streams = streams;
return this;
}
public Builder streams(String... streams) {
return streams(List.of(streams));
}
@CustomType.Setter
public Builder xPathQueries(List xPathQueries) {
if (xPathQueries == null) {
throw new MissingRequiredPropertyException("DataCollectionRuleDataSourcesWindowsEventLog", "xPathQueries");
}
this.xPathQueries = xPathQueries;
return this;
}
public Builder xPathQueries(String... xPathQueries) {
return xPathQueries(List.of(xPathQueries));
}
public DataCollectionRuleDataSourcesWindowsEventLog build() {
final var _resultValue = new DataCollectionRuleDataSourcesWindowsEventLog();
_resultValue.name = name;
_resultValue.streams = streams;
_resultValue.xPathQueries = xPathQueries;
return _resultValue;
}
}
}