mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
25 lines
510 B
Ruby
25 lines
510 B
Ruby
module Fog
|
|
module Compute
|
|
class IBM
|
|
class Real
|
|
|
|
# Modify a key
|
|
#
|
|
# ==== Returns
|
|
# * response<~Excon::Response>:
|
|
# * body<~Hash>
|
|
# TODO: docs
|
|
def modify_key(key_name, params={})
|
|
options = {
|
|
:method => 'PUT',
|
|
:expects => 200,
|
|
:path => "/keys/#{key_name}",
|
|
}
|
|
options.merge!(Fog::IBM.form_body(params))
|
|
request(options)
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|