mn.foreman.api.model.Network Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-api Show documentation
Show all versions of java-api Show documentation
A library for interacting with the Foreman API.
package mn.foreman.api.model;
import lombok.Builder;
import lombok.Data;
/** A network configuration. */
@Data
@Builder
public class Network {
/** The DNS entry. */
public final String dns;
/** The gateway. */
public final String gateway;
/** The hostname. */
public final String hostname;
/** The IP address. */
public final String ipAddress;
/** The netmask. */
public final String netmask;
}