1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/libvirt/models/compute/interface.rb

48 lines
775 B
Ruby

require 'fog/core/model'
module Fog
module Compute
class Libvirt
class Interface < Fog::Model
identity :name
attribute :mac
attribute :xml_desc
def save
raise Fog::Errors::Error.new('Creating a new interface is not yet implemented. Contributions welcome!')
end
def destroy
requires :raw
raw.delete
true
end
private
def raw
@raw
end
def raw=(new_raw)
@raw = new_raw
raw_attributes = {
:name => new_raw.name,
:mac => new_raw.mac,
:xml_desc => new_raw.xml_desc,
}
merge_attributes(raw_attributes)
end
end
end
end
end