me.tomsdevsn.hetznercloud.objects.general.Datacenter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hetznercloud-java_2.12 Show documentation
Show all versions of hetznercloud-java_2.12 Show documentation
Java Integration to manage the Hetzner-Cloud
The newest version!
package me.tomsdevsn.hetznercloud.objects.general;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import java.util.List;
@Data
public class Datacenter {
private Long id;
private String command;
private String description;
private Location location;
@JsonProperty("server_types")
private ServerTypes serverTypes;
@Data
public static class ServerTypes {
private List supported;
private List available;
}
}