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/vcloud/models/compute/network.rb
Peter Meier 9f8c804d20 [vcloud|compute] fix network to the minimum
After reading the API doc, in my opinion networks work different than
currently implemented here. To get the basic stuff working, we remove
all the code with unkwown implementation.
2011-11-29 11:37:18 +01:00

21 lines
451 B
Ruby

module Fog
module Vcloud
class Compute
class Network < Fog::Vcloud::Model
identity :href
ignore_attributes :xmlns, :xmlns_xsi, :xmlns_xsd, :xmlns_i, :Id
attribute :name, :aliases => :Name
#attribute :id, :aliases => :Id
attribute :description
attribute :configuration, :aliases => :Configuration
attribute :links, :aliases => :Link, :type => :array
end
end
end
end