Sha256: f73b0bd947e92e3faa0cf16b6c31d023d1c89835846f3433e0de33bd0198f7f4
Contents?: true
Size: 649 Bytes
Versions: 29
Compression:
Stored size: 649 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
29 entries across 29 versions & 4 rubygems