Method: CpOraclecloud::SshKey.all
- Defined in:
- app/models/cp_oraclecloud/ssh_key.rb
.all ⇒ Object
39 40 41 42 43 |
# File 'app/models/cp_oraclecloud/ssh_key.rb', line 39 def self.all result = [] connection.ssh_keys.each { |k| result.push(CpOraclecloud::SshKey.new(k.attributes))} result end |