mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
24 lines
409 B
Ruby
24 lines
409 B
Ruby
![]() |
module Fog
|
||
|
module Compute
|
||
|
class IBM
|
||
|
class Real
|
||
|
|
||
|
# Get a key
|
||
|
#
|
||
|
# ==== Returns
|
||
|
# * response<~Excon::Response>:
|
||
|
# * body<~Hash>
|
||
|
# TODO: docs
|
||
|
def get_key(key_name)
|
||
|
request(
|
||
|
:method => 'GET',
|
||
|
:expects => 200,
|
||
|
:path => "/keys/#{key_name}"
|
||
|
)
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|