mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
21 lines
No EOL
304 B
Ruby
21 lines
No EOL
304 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/vcloudng/models/compute/task'
|
|
|
|
module Fog
|
|
module Compute
|
|
class Vcloudng
|
|
|
|
class Tasks < Fog::Collection
|
|
model Fog::Compute::Vcloudng::Task
|
|
|
|
|
|
|
|
|
|
def all
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end |