net.minidev.ovh.api.router.OvhDnat Maven / Gradle / Ivy
 The 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;
	/**
	 * Source IP or network
	 *
	 * canBeNull && readOnly
	 */
	public String sourceNet;
	/**
	 * New destination IP
	 *
	 * canBeNull && readOnly
	 */
	public String newDestinationNet;
	/**
	 * canBeNull && readOnly
	 */
	public Long id;
	/**
	 * New destination port number
	 *
	 * canBeNull && readOnly
	 */
	public Long newDestinationPort;
	/**
	 * canBeNull && readOnly
	 */
	public OvhStatusEnum status;
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy