all()
click to toggle source
def all
data = service.get_key_pairs.body
load(data)
end
by_label(label)
click to toggle source
def by_label(label)
all.select { |key_pair| key_pair.label == label }.first
end
get(id)
click to toggle source
def get(id)
if key_pair = service.get_key_pair(id).body
new(key_pair)
end
rescue Fog::Network::Softlayer::NotFound
nil
end