com.bmc.truesight.saas.meter.client.response.model.Cpu Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of meter-client Show documentation
Show all versions of meter-client Show documentation
A java library for interacting with the TrueSight Meter.
package com.bmc.truesight.saas.meter.client.response.model;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import org.immutables.value.Value;
@JsonDeserialize(as = ImmutableCpu.class)
@Value.Immutable
public abstract class Cpu {
public abstract String vendor();
public abstract String model();
public abstract int mhz();
public abstract int cacheSize();
public abstract int totalSockets();
public abstract int totalCores();
public abstract int coresPerSocket();
}