Class: Fog::Compute::Softlayer::KeyPairs

Inherits:
Fog::Collection
  • Object
show all
Defined in:
lib/fog/softlayer/models/compute/key_pairs.rb

Instance Method Summary collapse

Instance Method Details

#allObject



17
18
19
20
# File 'lib/fog/softlayer/models/compute/key_pairs.rb', line 17

def all
  data = service.get_key_pairs.body
  load(data)
end

#by_label(label) ⇒ Object



30
31
32
# File 'lib/fog/softlayer/models/compute/key_pairs.rb', line 30

def by_label(label)
  all.select { |key_pair| key_pair.label == label }.first
end

#get(id) ⇒ Object



22
23
24
25
26
27
28
# File 'lib/fog/softlayer/models/compute/key_pairs.rb', line 22

def get(id)
  if key_pair = service.get_key_pair(id).body
    new(key_pair)
  end
rescue Fog::Network::Softlayer::NotFound
  nil
end