Sha256: 17d0d5eeab68518ef1d3eb4f867c699ef57f8d6d893c0f8de06eefa85e99450a
Contents?: true
Size: 650 Bytes
Versions: 37
Compression:
Stored size: 650 Bytes
Contents
require 'fog/core/model' module Fog module HP class LB class VirtualIp < Fog::Model identity :id attribute :address attribute :ip_version, :alias => 'ipVersion' attribute :type 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 private def load_balancer collection.load_balancer end end end end end
Version data entries
37 entries across 37 versions & 2 rubygems