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