
com.pulumi.azurenative.appplatform.outputs.ContainerProbeSettingsResponse 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.appplatform.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.Boolean;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ContainerProbeSettingsResponse {
/**
* @return Indicates whether disable the liveness and readiness probe
*
*/
private @Nullable Boolean disableProbe;
private ContainerProbeSettingsResponse() {}
/**
* @return Indicates whether disable the liveness and readiness probe
*
*/
public Optional disableProbe() {
return Optional.ofNullable(this.disableProbe);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ContainerProbeSettingsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Boolean disableProbe;
public Builder() {}
public Builder(ContainerProbeSettingsResponse defaults) {
Objects.requireNonNull(defaults);
this.disableProbe = defaults.disableProbe;
}
@CustomType.Setter
public Builder disableProbe(@Nullable Boolean disableProbe) {
this.disableProbe = disableProbe;
return this;
}
public ContainerProbeSettingsResponse build() {
final var _resultValue = new ContainerProbeSettingsResponse();
_resultValue.disableProbe = disableProbe;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy