mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
50 lines
1.2 KiB
Ruby
50 lines
1.2 KiB
Ruby
module Fog
|
|
module Compute
|
|
class RackspaceV2
|
|
class Real
|
|
|
|
# Requests a new keypair to be created
|
|
#
|
|
# ==== Parameters
|
|
# * name<~String> - name to give new key
|
|
#
|
|
# ==== Returns
|
|
# * response<~Excon::Response>:
|
|
# * keypair<~Hash>:
|
|
# * 'fingerprint'<~String>:
|
|
# * 'name'<~String>:
|
|
# * 'private_key'<~String>:
|
|
# * 'public_key'<~String>:
|
|
# * 'user_id'<~String>:
|
|
def create_keypair(name, public_key=nil)
|
|
data = {
|
|
'keypair' => {
|
|
'name' => name
|
|
}
|
|
}
|
|
|
|
request(
|
|
:method => 'POST',
|
|
:expects => 200,
|
|
:path => '/os-keypairs',
|
|
:body => Fog::JSON.encode(data)
|
|
)
|
|
end
|
|
end
|
|
|
|
class Mock
|
|
def create_keypair(name, public_key=nil)
|
|
|
|
k = self.data[:keypairs][0]
|
|
k['keypair']['name'] = name
|
|
|
|
response = Excon::Response.new
|
|
response.status = 200
|
|
response.body = k
|
|
response
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|