2011-05-23 21:17:16 -04:00
|
|
|
module Fog
|
|
|
|
module Vcloud
|
|
|
|
class Compute
|
|
|
|
class Network < Fog::Vcloud::Model
|
|
|
|
|
2011-10-05 05:58:50 -04:00
|
|
|
identity :href, :aliases => :Href
|
2011-05-23 21:17:16 -04:00
|
|
|
|
2011-09-27 10:21:29 -04:00
|
|
|
ignore_attributes :xmlns, :xmlns_xsi, :xmlns_xsd, :xmlns_i, :Id
|
2011-05-23 21:17:16 -04:00
|
|
|
|
|
|
|
attribute :name, :aliases => :Name
|
|
|
|
|
2011-10-05 05:58:50 -04:00
|
|
|
attribute :description, :aliases => :Description
|
2011-09-27 10:21:29 -04:00
|
|
|
attribute :configuration, :aliases => :Configuration
|
2011-05-23 21:17:16 -04:00
|
|
|
|
2011-09-27 10:21:29 -04:00
|
|
|
attribute :links, :aliases => :Link, :type => :array
|
2011-05-23 21:17:16 -04:00
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|