mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
17 lines
325 B
Ruby
17 lines
325 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
|