io.github.zanella.nomad.v1.common.models.UpdateStrategy 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.common.models;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@NoArgsConstructor
@AllArgsConstructor(suppressConstructorProperties = true)
public class UpdateStrategy {
@JsonProperty("MaxParallel") Integer maxParallel;
@JsonProperty("Stagger") Double stagger;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy