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