com.pulumi.signalfx.outputs.TimeChartHistogramOption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of signalfx Show documentation
Show all versions of signalfx Show documentation
A Pulumi package for creating and managing SignalFx resources.
// *** 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.signalfx.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 TimeChartHistogramOption {
/**
* @return Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine, red, gold, greenyellow, chartreuse, jade
*
*/
private @Nullable String colorTheme;
private TimeChartHistogramOption() {}
/**
* @return Color to use : gray, blue, azure, navy, brown, orange, yellow, iris, magenta, pink, purple, violet, lilac, emerald, green, aquamarine, red, gold, greenyellow, chartreuse, jade
*
*/
public Optional colorTheme() {
return Optional.ofNullable(this.colorTheme);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(TimeChartHistogramOption defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String colorTheme;
public Builder() {}
public Builder(TimeChartHistogramOption defaults) {
Objects.requireNonNull(defaults);
this.colorTheme = defaults.colorTheme;
}
@CustomType.Setter
public Builder colorTheme(@Nullable String colorTheme) {
this.colorTheme = colorTheme;
return this;
}
public TimeChartHistogramOption build() {
final var _resultValue = new TimeChartHistogramOption();
_resultValue.colorTheme = colorTheme;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy