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/vm_customizations.rb
2013-06-24 13:46:30 +02:00

17 lines
No EOL
311 B
Ruby

require 'fog/core/collection'
require 'fog/vcloudng/models/compute/vm_customization'
module Fog
module Compute
class Vcloudng
class VmCustomizations < Fog::Collection
model Fog::Compute::Vcloudng::VmCustomization
attribute :vm
end
end
end
end