com.pulumi.azure.monitoring.outputs.DataCollectionRuleDataSourcesPrometheusForwarder 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.azure.monitoring.outputs.DataCollectionRuleDataSourcesPrometheusForwarderLabelIncludeFilter;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nullable;
@CustomType
public final class DataCollectionRuleDataSourcesPrometheusForwarder {
/**
* @return One or more `label_include_filter` blocks as defined above.
*
*/
private @Nullable List labelIncludeFilters;
/**
* @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 value is `Microsoft-PrometheusMetrics`.
*
*/
private List streams;
private DataCollectionRuleDataSourcesPrometheusForwarder() {}
/**
* @return One or more `label_include_filter` blocks as defined above.
*
*/
public List labelIncludeFilters() {
return this.labelIncludeFilters == null ? List.of() : this.labelIncludeFilters;
}
/**
* @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 value is `Microsoft-PrometheusMetrics`.
*
*/
public List streams() {
return this.streams;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DataCollectionRuleDataSourcesPrometheusForwarder defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List labelIncludeFilters;
private String name;
private List streams;
public Builder() {}
public Builder(DataCollectionRuleDataSourcesPrometheusForwarder defaults) {
Objects.requireNonNull(defaults);
this.labelIncludeFilters = defaults.labelIncludeFilters;
this.name = defaults.name;
this.streams = defaults.streams;
}
@CustomType.Setter
public Builder labelIncludeFilters(@Nullable List labelIncludeFilters) {
this.labelIncludeFilters = labelIncludeFilters;
return this;
}
public Builder labelIncludeFilters(DataCollectionRuleDataSourcesPrometheusForwarderLabelIncludeFilter... labelIncludeFilters) {
return labelIncludeFilters(List.of(labelIncludeFilters));
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("DataCollectionRuleDataSourcesPrometheusForwarder", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder streams(List streams) {
if (streams == null) {
throw new MissingRequiredPropertyException("DataCollectionRuleDataSourcesPrometheusForwarder", "streams");
}
this.streams = streams;
return this;
}
public Builder streams(String... streams) {
return streams(List.of(streams));
}
public DataCollectionRuleDataSourcesPrometheusForwarder build() {
final var _resultValue = new DataCollectionRuleDataSourcesPrometheusForwarder();
_resultValue.labelIncludeFilters = labelIncludeFilters;
_resultValue.name = name;
_resultValue.streams = streams;
return _resultValue;
}
}
}