mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
27 lines
524 B
Ruby
27 lines
524 B
Ruby
module Fog
|
|
module Compute
|
|
class IBM
|
|
class Real
|
|
|
|
# Create a key
|
|
#
|
|
# ==== Returns
|
|
# * response<~Excon::Response>:
|
|
# * body<~Hash>
|
|
# TODO: docs
|
|
def create_key(name, public_key=nil)
|
|
request(
|
|
:method => 'POST',
|
|
:expects => 200,
|
|
:path => '/keys',
|
|
:body => {
|
|
'name' => name,
|
|
'publicKey' => public_key
|
|
}
|
|
)
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|