2012-11-14 08:31:02 -05:00
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class Vsphere
|
|
|
|
|
|
|
|
class Interface < Fog::Model
|
|
|
|
|
|
|
|
identity :mac
|
2013-04-23 04:52:52 -04:00
|
|
|
alias :id :mac
|
2012-11-14 08:31:02 -05:00
|
|
|
|
|
|
|
attribute :network
|
|
|
|
attribute :name
|
|
|
|
attribute :status
|
|
|
|
attribute :summary
|
|
|
|
attribute :type
|
2013-04-23 04:52:52 -04:00
|
|
|
attribute :key
|
2012-11-14 08:31:02 -05:00
|
|
|
|
|
|
|
def initialize(attributes={} )
|
|
|
|
super defaults.merge(attributes)
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_s
|
|
|
|
name
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def defaults
|
|
|
|
{
|
|
|
|
:name=>"Network adapter",
|
|
|
|
:network=>"VM Network",
|
|
|
|
:summary=>"VM Network",
|
|
|
|
:type=> RbVmomi::VIM::VirtualE1000,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|