1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/ibm/models/compute/keys.rb

27 lines
469 B
Ruby

require 'fog/core/collection'
require 'fog/ibm/models/compute/key'
module Fog
module Compute
class IBM
class Keys < Fog::Collection
model Fog::Compute::IBM::Key
def all
load(connection.list_keys.body['keys'])
end
def get(key_id)
begin
new(connection.get_key(key_id).body)
rescue Fog::Compute::IBM::NotFound
nil
end
end
end
end
end
end