Sha256: 3602541f27b91333af0e57f734919b6371ad6b77229e6ce3c495a855b570fcab
Contents?: true
Size: 687 Bytes
Versions: 9
Compression:
Stored size: 687 Bytes
Contents
require 'f5/icontrol/common/enum_item' module F5 module Icontrol module LocalLB # https://devcentral.f5.com/wiki/iControl.LocalLB__ProfileContextType.ashx # A list of profile context types. module ProfileContextType # Profile applies to both client and server sides. PROFILE_CONTEXT_TYPE_ALL = EnumItem.new('PROFILE_CONTEXT_TYPE_ALL', '0') # Profile applies to the client side only. PROFILE_CONTEXT_TYPE_CLIENT = EnumItem.new('PROFILE_CONTEXT_TYPE_CLIENT', '1') # Profile applies to the server side only. PROFILE_CONTEXT_TYPE_SERVER = EnumItem.new('PROFILE_CONTEXT_TYPE_SERVER', '2') end end end end
Version data entries
9 entries across 9 versions & 1 rubygems