io.github.zanella.nomad.v1.client.models.LogStream 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.client.models;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@NoArgsConstructor
@AllArgsConstructor(suppressConstructorProperties = true)
public class LogStream {
@JsonProperty("File") String file;
@JsonProperty("Offset") Double offset;
@JsonProperty("Data") String data;
@JsonProperty("FileEvent") String fileEvent;
public enum Type {
stdout, stderr;
}
public enum Origin {
start, end;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy