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

net.minidev.ovh.api.router.OvhDnat Maven / Gradle / Ivy

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

/**
 * Network Dnat
 */
public class OvhDnat {
	/**
	 * Destination port number
	 *
	 * canBeNull && readOnly
	 */
	public Long destinationPort;

	/**
	 * Protocol (TCP, UDP)
	 *
	 * canBeNull && readOnly
	 */
	public OvhProtocolEnum protocol;

	/**
	 * New destination IP
	 *
	 * canBeNull && readOnly
	 */
	public String newDestinationNet;

	/**
	 * Source IP or network
	 *
	 * canBeNull && readOnly
	 */
	public String sourceNet;

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

	/**
	 * New destination port number
	 *
	 * canBeNull && readOnly
	 */
	public Long newDestinationPort;

	/**
	 * canBeNull && readOnly
	 */
	public OvhStatusEnum status;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy