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

net.minidev.ovh.api.vps.OvhDisk Maven / Gradle / Ivy

There is a newer version: 1.0.17
Show newest version
package net.minidev.ovh.api.vps;

import net.minidev.ovh.api.vps.disk.OvhStateEnum;
import net.minidev.ovh.api.vps.disk.OvhTypeEnum;

/**
 * Information about a disk of a VPS Virtual Machine
 */
public class OvhDisk {
	/**
	 * The low disk free space threshold in MiB
	 *
	 * canBeNull && readOnly
	 */
	public Long lowFreeSpaceThreshold;

	/**
	 * canBeNull && readOnly
	 */
	public Long size;

	/**
	 * canBeNull && readOnly
	 */
	public Long bandwidthLimit;

	/**
	 * canBeNull && readOnly
	 */
	public Long id;

	/**
	 * canBeNull && readOnly
	 */
	public OvhStateEnum state;

	/**
	 * The monitoring state of this disk
	 *
	 * canBeNull && readOnly
	 */
	public Boolean monitoring;

	/**
	 * canBeNull && readOnly
	 */
	public OvhTypeEnum type;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy