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/vcloudng/models/compute/organization.rb
2013-06-18 17:29:42 +02:00

19 lines
No EOL
365 B
Ruby

require 'fog/core/model'
module Fog
module Compute
class Vcloudng
class Organization < Fog::Model
identity :id
attribute :name
attribute :type
attribute :href
attribute :description, :aliases => 'Description'
attribute :links, :aliases => 'Links'
end
end
end
end