io.github.zanella.nomad.v1.nodes.models.NodeInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nomad-api Show documentation
Show all versions of nomad-api Show documentation
Java client for Nomad's HTTP API
The newest version!
package io.github.zanella.nomad.v1.nodes.models;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.*;
import java.util.Map;
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class NodeInfo extends NodeSummary {
@JsonProperty("HTTPAddr") String httpAddr;
@JsonProperty("TLSEnabled") boolean tlsEnabled;
@JsonProperty("Attributes") Map attributes;
@JsonProperty("Resources") Resources resources;
@JsonProperty("Reserved") Resources reserved;
@JsonProperty("Links") Map links;
@JsonProperty("Meta") Object meta;
public String superToString() { return super.toString(); }
public boolean superEquals(NodeSummary nodeSummary) { return super.equals(nodeSummary); }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy