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

17 lines
311 B
Ruby
Raw Normal View History

2013-06-24 07:46:30 -04:00
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