2011-06-28 15:47:16 +02:00
|
|
|
require 'fog/core/model'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class Libvirt
|
|
|
|
|
|
|
|
class Interface < Fog::Model
|
|
|
|
|
2011-08-03 12:48:44 +02:00
|
|
|
identity :name
|
2011-06-28 15:47:16 +02:00
|
|
|
attribute :mac
|
2012-04-04 15:03:17 +03:00
|
|
|
attribute :active
|
2011-06-28 15:47:16 +02:00
|
|
|
|
2011-08-03 12:48:44 +02:00
|
|
|
def save
|
2011-08-08 15:30:09 -06:00
|
|
|
raise Fog::Errors::Error.new('Creating a new interface is not yet implemented. Contributions welcome!')
|
2011-08-03 12:48:44 +02:00
|
|
|
end
|
2011-08-08 15:22:55 -06:00
|
|
|
|
2012-04-04 15:03:17 +03:00
|
|
|
def shutdown
|
|
|
|
connection.destroy_interface(mac)
|
2011-06-28 15:47:16 +02:00
|
|
|
end
|
2011-08-08 15:22:55 -06:00
|
|
|
|
2012-04-04 15:03:17 +03:00
|
|
|
def active?
|
|
|
|
active
|
2011-06-28 15:47:16 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|