io.github.zanella.nomad.v1.allocations.models.Allocation 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.allocations.models;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.github.zanella.nomad.v1.common.models.AllocationSummary;
import io.github.zanella.nomad.v1.common.models.TaskState;
import lombok.*;
import java.util.Map;
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
@NoArgsConstructor
public class Allocation extends AllocationSummary {
@JsonProperty("TaskStates")
Map taskStates;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy