com.pulumi.googlenative.gkeonprem.v1.outputs.BareMetalClusterOperationsConfigResponse 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.googlenative.gkeonprem.v1.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.Boolean;
import java.util.Objects;
@CustomType
public final class BareMetalClusterOperationsConfigResponse {
/**
* @return Whether collection of application logs/metrics should be enabled (in addition to system logs/metrics).
*
*/
private Boolean enableApplicationLogs;
private BareMetalClusterOperationsConfigResponse() {}
/**
* @return Whether collection of application logs/metrics should be enabled (in addition to system logs/metrics).
*
*/
public Boolean enableApplicationLogs() {
return this.enableApplicationLogs;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(BareMetalClusterOperationsConfigResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private Boolean enableApplicationLogs;
public Builder() {}
public Builder(BareMetalClusterOperationsConfigResponse defaults) {
Objects.requireNonNull(defaults);
this.enableApplicationLogs = defaults.enableApplicationLogs;
}
@CustomType.Setter
public Builder enableApplicationLogs(Boolean enableApplicationLogs) {
this.enableApplicationLogs = Objects.requireNonNull(enableApplicationLogs);
return this;
}
public BareMetalClusterOperationsConfigResponse build() {
final var o = new BareMetalClusterOperationsConfigResponse();
o.enableApplicationLogs = enableApplicationLogs;
return o;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy