All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hashicorp.nomad.apimodel.HostStats Maven / Gradle / Ivy

There is a newer version: 0.11.3.0
Show newest version
package com.hashicorp.nomad.apimodel;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.hashicorp.nomad.javasdk.ApiObject;
import com.hashicorp.nomad.javasdk.NomadJson;

import java.io.IOException;
import java.math.BigInteger;
import java.util.List;

/**
 * This is a generated JavaBean representing a request or response structure.
 *
 * @see Nomad HTTP API documentation associated with the endpoint you are using.
 */
public final class HostStats extends ApiObject {
    private HostMemoryStats memory;
    private List cpu;
    private List diskStats;
    private BigInteger uptime;
    private double cpuTicksConsumed;

    @JsonProperty("Memory")
    public HostMemoryStats getMemory() {
        return memory;
    }

    public HostStats setMemory(HostMemoryStats memory) {
        this.memory = memory;
        return this;
    }

    @JsonProperty("CPU")
    public List getCpu() {
        return cpu;
    }

    public HostStats setCpu(List cpu) {
        this.cpu = cpu;
        return this;
    }

    public HostStats addCpu(HostCpuStats... cpu) {
        if (this.cpu == null)
            this.cpu = new java.util.ArrayList<>();
        for (HostCpuStats item : cpu)
            this.cpu.add(item);
        return this;
    }

    @JsonProperty("DiskStats")
    public List getDiskStats() {
        return diskStats;
    }

    public HostStats setDiskStats(List diskStats) {
        this.diskStats = diskStats;
        return this;
    }

    public HostStats addDiskStats(HostDiskStats... diskStats) {
        if (this.diskStats == null)
            this.diskStats = new java.util.ArrayList<>();
        for (HostDiskStats item : diskStats)
            this.diskStats.add(item);
        return this;
    }

    @JsonProperty("Uptime")
    public BigInteger getUptime() {
        return uptime;
    }

    public HostStats setUptime(BigInteger uptime) {
        this.uptime = uptime;
        return this;
    }

    @JsonProperty("CPUTicksConsumed")
    public double getCpuTicksConsumed() {
        return cpuTicksConsumed;
    }

    public HostStats setCpuTicksConsumed(double cpuTicksConsumed) {
        this.cpuTicksConsumed = cpuTicksConsumed;
        return this;
    }

    @Override
    public String toString() {
        return NomadJson.serialize(this);
    }

    public static HostStats fromJson(String json) throws IOException {
        return NomadJson.deserialize(json, HostStats.class);
    }

    public static List fromJsonArray(String json) throws IOException {
        return NomadJson.deserializeList(json, HostStats.class);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy