com.pulumi.azurenative.azurestackhci.outputs.IpPoolsResponse 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.azurestackhci.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 IpPoolsResponse {
/**
* @return Ending IP address for the management network. A minimum of six free, contiguous IPv4 addresses (excluding your host IPs) are needed for infrastructure services such as clustering.
*
*/
private @Nullable String endingAddress;
/**
* @return Starting IP address for the management network. A minimum of six free, contiguous IPv4 addresses (excluding your host IPs) are needed for infrastructure services such as clustering.
*
*/
private @Nullable String startingAddress;
private IpPoolsResponse() {}
/**
* @return Ending IP address for the management network. A minimum of six free, contiguous IPv4 addresses (excluding your host IPs) are needed for infrastructure services such as clustering.
*
*/
public Optional endingAddress() {
return Optional.ofNullable(this.endingAddress);
}
/**
* @return Starting IP address for the management network. A minimum of six free, contiguous IPv4 addresses (excluding your host IPs) are needed for infrastructure services such as clustering.
*
*/
public Optional startingAddress() {
return Optional.ofNullable(this.startingAddress);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(IpPoolsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String endingAddress;
private @Nullable String startingAddress;
public Builder() {}
public Builder(IpPoolsResponse defaults) {
Objects.requireNonNull(defaults);
this.endingAddress = defaults.endingAddress;
this.startingAddress = defaults.startingAddress;
}
@CustomType.Setter
public Builder endingAddress(@Nullable String endingAddress) {
this.endingAddress = endingAddress;
return this;
}
@CustomType.Setter
public Builder startingAddress(@Nullable String startingAddress) {
this.startingAddress = startingAddress;
return this;
}
public IpPoolsResponse build() {
final var _resultValue = new IpPoolsResponse();
_resultValue.endingAddress = endingAddress;
_resultValue.startingAddress = startingAddress;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy