1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/vcloud_director/requests/compute/get_request.rb

18 lines
260 B
Ruby
Raw Normal View History

2013-06-26 08:23:54 -04:00
module Fog
module Compute
2013-08-27 05:19:54 -04:00
class VcloudDirector
2013-06-26 08:23:54 -04:00
class Real
def get_request(uri)
request(
2013-09-16 13:13:09 -04:00
:expects => 200,
:method => 'GET',
:path => uri
2013-06-26 08:23:54 -04:00
)
end
2013-09-16 13:13:09 -04:00
2013-06-26 08:23:54 -04:00
end
end
end
end