Class: Fog::Compute::SakuraCloud::SshKeys

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

Instance Method Summary collapse

Instance Method Details

#allObject



11
12
13
# File 'lib/fog/sakuracloud/models/compute/ssh_keys.rb', line 11

def all
  load service.list_ssh_keys.body['SSHKeys']
end

#get(id) ⇒ Object



15
16
17
18
19
# File 'lib/fog/sakuracloud/models/compute/ssh_keys.rb', line 15

def get(id)
  all.find { |f| f.id == id }
rescue Fog::Errors::NotFound
  nil
end