mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
9f8c804d20
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.
21 lines
451 B
Ruby
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
|