mn.foreman.api.model.MacUpdate 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;
/** An update request to update a miner's MAC address. */
@Data
@Builder
public class MacUpdate {
/** The miner API port. */
private final int apiPort;
/** The miner IP. */
private final String ip;
/** The new MAC address. */
private final String mac;
}