mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
18 lines
324 B
Ruby
18 lines
324 B
Ruby
module Fog
|
|
module Compute
|
|
class VcloudDirector
|
|
class Real
|
|
|
|
def get_task(task_id)
|
|
request(
|
|
:expects => 200,
|
|
:method => 'GET',
|
|
:parser => Fog::ToHashDocument.new,
|
|
:path => "task/#{task_id}"
|
|
)
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|