com.pulumi.kubernetes.policy.v1beta1.outputs.HostPortRangePatch Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kubernetes Show documentation
Show all versions of kubernetes Show documentation
A Pulumi package for creating and managing Kubernetes 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.kubernetes.policy.v1beta1.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.Integer;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class HostPortRangePatch {
/**
* @return max is the end of the range, inclusive.
*
*/
private @Nullable Integer max;
/**
* @return min is the start of the range, inclusive.
*
*/
private @Nullable Integer min;
private HostPortRangePatch() {}
/**
* @return max is the end of the range, inclusive.
*
*/
public Optional max() {
return Optional.ofNullable(this.max);
}
/**
* @return min is the start of the range, inclusive.
*
*/
public Optional min() {
return Optional.ofNullable(this.min);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(HostPortRangePatch defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Integer max;
private @Nullable Integer min;
public Builder() {}
public Builder(HostPortRangePatch defaults) {
Objects.requireNonNull(defaults);
this.max = defaults.max;
this.min = defaults.min;
}
@CustomType.Setter
public Builder max(@Nullable Integer max) {
this.max = max;
return this;
}
@CustomType.Setter
public Builder min(@Nullable Integer min) {
this.min = min;
return this;
}
public HostPortRangePatch build() {
final var _resultValue = new HostPortRangePatch();
_resultValue.max = max;
_resultValue.min = min;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy