
com.pulumi.azurenative.insights.outputs.DestinationsSpecResponseAzureMonitorMetrics Maven / Gradle / Ivy
// *** 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.azurenative.insights.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class DestinationsSpecResponseAzureMonitorMetrics {
/**
* @return A friendly name for the destination.
* This name should be unique across all destinations (regardless of type) within the data collection rule.
*
*/
private @Nullable String name;
private DestinationsSpecResponseAzureMonitorMetrics() {}
/**
* @return A friendly name for the destination.
* This name should be unique across all destinations (regardless of type) within the data collection rule.
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DestinationsSpecResponseAzureMonitorMetrics defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String name;
public Builder() {}
public Builder(DestinationsSpecResponseAzureMonitorMetrics defaults) {
Objects.requireNonNull(defaults);
this.name = defaults.name;
}
@CustomType.Setter
public Builder name(@Nullable String name) {
this.name = name;
return this;
}
public DestinationsSpecResponseAzureMonitorMetrics build() {
final var _resultValue = new DestinationsSpecResponseAzureMonitorMetrics();
_resultValue.name = name;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy