Sha256: 562db84495e8c07c2d55daab75c6a1b18f49d734eb51745014dae6d8d862a800
Contents?: true
Size: 753 Bytes
Versions: 19
Compression:
Stored size: 753 Bytes
Contents
# # Author:: Matt Eldridge (<matt.eldridge@us.ibm.com>) # © Copyright IBM Corporation 2014. # # LICENSE: MIT (http://opensource.org/licenses/MIT) # require 'fog/softlayer/models/compute/key_pair' module Fog module Compute class Softlayer class KeyPairs < Fog::Collection model Fog::Compute::Softlayer::KeyPair def all data = service.get_key_pairs.body load(data) end def get(id) if key_pair = service.get_key_pair(id).body new(key_pair) end rescue Fog::Network::Softlayer::NotFound nil end def by_label(label) all.select { |key_pair| key_pair.label == label }.first end end end end end
Version data entries
19 entries across 17 versions & 3 rubygems