mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
2e0b7e545a
Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
14 lines
299 B
Ruby
14 lines
299 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/vcloud_director/models/compute/vm_customization'
|
|
|
|
module Fog
|
|
module Compute
|
|
class VcloudDirector
|
|
class VmCustomizations < Collection
|
|
model Fog::Compute::VcloudDirector::VmCustomization
|
|
|
|
attribute :vm
|
|
end
|
|
end
|
|
end
|
|
end
|