Sha256: 45bd9179d63bf0b78cc7fdf0c7cc410928932c26687c5bc4824f7ec31f376a95

Contents?: true

Size: 821 Bytes

Versions: 5

Compression:

Stored size: 821 Bytes

Contents

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 = 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 = 1

        #	The object is inactive regardless
        # of availability status.
        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	= 3
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
f5-icontrol-0.2.5 lib/f5/icontrol/locallb/enabled_status.rb
f5-icontrol-0.2.4 lib/f5/icontrol/locallb/enabled_status.rb
f5-icontrol-0.2.3 lib/f5/icontrol/locallb/enabled_status.rb
f5-icontrol-0.2.2 lib/f5/icontrol/locallb/enabled_status.rb
f5-icontrol-0.2.1 lib/f5/icontrol/locallb/enabled_status.rb