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

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

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

/**
 * Network Snat
 */
public class OvhSnat {
	/**
	 * Destination port number
	 *
	 * canBeNull && readOnly
	 */
	public Long destinationPort;

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

	/**
	 * Destination IP or network
	 *
	 * canBeNull && readOnly
	 */
	public String destinationNet;

	/**
	 * New source IP
	 *
	 * canBeNull && readOnly
	 */
	public String newSourceNet;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy