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

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

package net.minidev.ovh.api.vps;

import net.minidev.ovh.api.coretypes.OvhIpVersionEnum;
import net.minidev.ovh.api.vps.ip.OvhGeolocationEnum;
import net.minidev.ovh.api.vps.ip.OvhTypeEnum;

/**
 * Information about an IP address for a VPS Virtual Machine
 */
public class OvhIp {
	/**
	 * canBeNull && readOnly
	 */
	public String macAddress;

	/**
	 * The effective ip address of the Ip object
	 *
	 * canBeNull && readOnly
	 */
	public String ipAddress;

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

	/**
	 * canBeNull && readOnly
	 */
	public String reverse;

	/**
	 * canBeNull && readOnly
	 */
	public OvhIpVersionEnum version;

	/**
	 * canBeNull && readOnly
	 */
	public String gateway;

	/**
	 * canBeNull && readOnly
	 */
	public OvhGeolocationEnum geolocation;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy