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

19 lines
376 B
Ruby

module Fog
module Compute
class VcloudDirector
class Real
# This is used for manual testing.
#
# @api private
def get_request(uri)
request(
:expects => 200,
:idempotent => true,
:method => 'GET',
:path => uri
)
end
end
end
end
end