Sha256: 39389f76ba6360f538f8d35201b3166998d33ea9b94299955476e607a5380102
Contents?: true
Size: 455 Bytes
Versions: 29
Compression:
Stored size: 455 Bytes
Contents
require 'fog/core/model' module Fog module HP class LB class Algorithm < Fog::Model identity :name def destroy raise Fog::HP::LB::NotFound.new('Operation not allowed.') end def create(params) raise Fog::HP::LB::NotFound.new('Operation not allowed.') end def save raise Fog::HP::LB::NotFound.new('Operation not allowed.') end end end end end
Version data entries
29 entries across 29 versions & 4 rubygems