2012-02-10 10:10:49 -05:00
|
|
|
require 'fog/joyent/models/compute/key'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class Joyent
|
|
|
|
class Keys < Fog::Collection
|
|
|
|
|
|
|
|
model Fog::Compute::Joyent::Key
|
|
|
|
|
|
|
|
def all
|
|
|
|
data = connection.list_keys.body
|
|
|
|
load(data)
|
|
|
|
end
|
|
|
|
|
|
|
|
def get(keyname)
|
|
|
|
data = connection.get_key(keyname).body
|
|
|
|
if data
|
|
|
|
new(data)
|
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def create(params = {})
|
2012-04-09 09:40:54 -04:00
|
|
|
raise ArgumentError, "option [name] required" unless params.key?(:name)
|
|
|
|
raise ArgumentError, "option [key] required" unless params.key?(:key)
|
2012-02-10 10:10:49 -05:00
|
|
|
|
|
|
|
self.connection.create_key(params)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|