Sha256: bd6b818416e82f2e0e606e1dcfe7d4268115307d8f208a503e24c057b2816772
Contents?: true
Size: 1008 Bytes
Versions: 9
Compression:
Stored size: 1008 Bytes
Contents
require 'f5/icontrol/common/enum_item' module F5 module Icontrol module LocalLB module VirtualServer # https://devcentral.f5.com/wiki/iControl.LocalLB__VirtualServer__SourceAddressTranslationType.ashx # A list of source address translation types. module SourceAddressTranslationType # Translation type unknown (or unsupported by iControl). SRC_TRANS_UNKNOWN = EnumItem.new('SRC_TRANS_UNKNOWN', '0') # No translation is being used. SRC_TRANS_NONE = EnumItem.new('SRC_TRANS_NONE', '1') # The translation uses self IP addresses. SRC_TRANS_AUTOMAP = EnumItem.new('SRC_TRANS_AUTOMAP', '2') # The translation uses a SNAT pool of translation addresses. SRC_TRANS_SNATPOOL = EnumItem.new('SRC_TRANS_SNATPOOL', '3') # The translation uses an LSN pool of translation addresses. SRC_TRANS_LSNPOOL = EnumItem.new('SRC_TRANS_LSNPOOL', '4') end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems