com.pulumi.azure.monitoring.outputs.GetDataCollectionRuleDataSourcePerformanceCounter 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.Integer;
import java.lang.String;
import java.util.List;
import java.util.Objects;
@CustomType
public final class GetDataCollectionRuleDataSourcePerformanceCounter {
/**
* @return Specifies a list of specifier names of the performance counters you want to collect. Use a wildcard `*` to collect counters for all instances. To get a list of performance counters on Windows, run the command `typeperf`.
*
*/
private List counterSpecifiers;
/**
* @return Specifies the name of the Data Collection Rule.
*
*/
private String name;
/**
* @return The number of seconds between consecutive counter measurements (samples). The value should be integer between `1` and `1800` inclusive.
*
*/
private Integer samplingFrequencyInSeconds;
/**
* @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.
*
*/
private List streams;
private GetDataCollectionRuleDataSourcePerformanceCounter() {}
/**
* @return Specifies a list of specifier names of the performance counters you want to collect. Use a wildcard `*` to collect counters for all instances. To get a list of performance counters on Windows, run the command `typeperf`.
*
*/
public List counterSpecifiers() {
return this.counterSpecifiers;
}
/**
* @return Specifies the name of the Data Collection Rule.
*
*/
public String name() {
return this.name;
}
/**
* @return The number of seconds between consecutive counter measurements (samples). The value should be integer between `1` and `1800` inclusive.
*
*/
public Integer samplingFrequencyInSeconds() {
return this.samplingFrequencyInSeconds;
}
/**
* @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.
*
*/
public List streams() {
return this.streams;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetDataCollectionRuleDataSourcePerformanceCounter defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private List counterSpecifiers;
private String name;
private Integer samplingFrequencyInSeconds;
private List streams;
public Builder() {}
public Builder(GetDataCollectionRuleDataSourcePerformanceCounter defaults) {
Objects.requireNonNull(defaults);
this.counterSpecifiers = defaults.counterSpecifiers;
this.name = defaults.name;
this.samplingFrequencyInSeconds = defaults.samplingFrequencyInSeconds;
this.streams = defaults.streams;
}
@CustomType.Setter
public Builder counterSpecifiers(List counterSpecifiers) {
if (counterSpecifiers == null) {
throw new MissingRequiredPropertyException("GetDataCollectionRuleDataSourcePerformanceCounter", "counterSpecifiers");
}
this.counterSpecifiers = counterSpecifiers;
return this;
}
public Builder counterSpecifiers(String... counterSpecifiers) {
return counterSpecifiers(List.of(counterSpecifiers));
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetDataCollectionRuleDataSourcePerformanceCounter", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder samplingFrequencyInSeconds(Integer samplingFrequencyInSeconds) {
if (samplingFrequencyInSeconds == null) {
throw new MissingRequiredPropertyException("GetDataCollectionRuleDataSourcePerformanceCounter", "samplingFrequencyInSeconds");
}
this.samplingFrequencyInSeconds = samplingFrequencyInSeconds;
return this;
}
@CustomType.Setter
public Builder streams(List streams) {
if (streams == null) {
throw new MissingRequiredPropertyException("GetDataCollectionRuleDataSourcePerformanceCounter", "streams");
}
this.streams = streams;
return this;
}
public Builder streams(String... streams) {
return streams(List.of(streams));
}
public GetDataCollectionRuleDataSourcePerformanceCounter build() {
final var _resultValue = new GetDataCollectionRuleDataSourcePerformanceCounter();
_resultValue.counterSpecifiers = counterSpecifiers;
_resultValue.name = name;
_resultValue.samplingFrequencyInSeconds = samplingFrequencyInSeconds;
_resultValue.streams = streams;
return _resultValue;
}
}
}