Sha256: 918253f557fa5b826a0b2692aa85ffeb07ddb7c08b9420d7a3cafe62605d5bf6
Contents?: true
Size: 968 Bytes
Versions: 9
Compression:
Stored size: 968 Bytes
Contents
require 'f5/icontrol/common/enum_item' module F5 module Icontrol module LocalLB # https://devcentral.f5.com/wiki/iControl.LocalLB__EnabledStatus.ashx # A list of possible values for enabled status. module EnabledStatus # Error scenario. ENABLED_STATUS_NONE = EnumItem.new('ENABLED_STATUS_NONE', '0') # The object is active when in Green availability status. It may or may not be active when in Blue availability status. ENABLED_STATUS_ENABLED = EnumItem.new('ENABLED_STATUS_ENABLED', '1') # The object is inactive regardless of availability status. ENABLED_STATUS_DISABLED = EnumItem.new('ENABLED_STATUS_DISABLED', '2') # The object is inactive regardless of availability status because its parent has been disabled, but the object itself is still enabled. ENABLED_STATUS_DISABLED_BY_PARENT = EnumItem.new('ENABLED_STATUS_DISABLED_BY_PARENT', '3') end end end end
Version data entries
9 entries across 9 versions & 1 rubygems