com.pulumi.azurenative.hybridnetwork.outputs.HelmUpgradeOptionsResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure 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.azurenative.hybridnetwork.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 HelmUpgradeOptionsResponse {
/**
* @return The helm deployment atomic options
*
*/
private @Nullable String atomic;
/**
* @return The helm deployment timeout options
*
*/
private @Nullable String timeout;
/**
* @return The helm deployment wait options
*
*/
private @Nullable String wait;
private HelmUpgradeOptionsResponse() {}
/**
* @return The helm deployment atomic options
*
*/
public Optional atomic() {
return Optional.ofNullable(this.atomic);
}
/**
* @return The helm deployment timeout options
*
*/
public Optional timeout() {
return Optional.ofNullable(this.timeout);
}
/**
* @return The helm deployment wait options
*
*/
public Optional wait_() {
return Optional.ofNullable(this.wait);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(HelmUpgradeOptionsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String atomic;
private @Nullable String timeout;
private @Nullable String wait;
public Builder() {}
public Builder(HelmUpgradeOptionsResponse defaults) {
Objects.requireNonNull(defaults);
this.atomic = defaults.atomic;
this.timeout = defaults.timeout;
this.wait = defaults.wait;
}
@CustomType.Setter
public Builder atomic(@Nullable String atomic) {
this.atomic = atomic;
return this;
}
@CustomType.Setter
public Builder timeout(@Nullable String timeout) {
this.timeout = timeout;
return this;
}
@CustomType.Setter("wait")
public Builder wait_(@Nullable String wait) {
this.wait = wait;
return this;
}
public HelmUpgradeOptionsResponse build() {
final var _resultValue = new HelmUpgradeOptionsResponse();
_resultValue.atomic = atomic;
_resultValue.timeout = timeout;
_resultValue.wait = wait;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy