Class: HCloud::SSHKey
- Defined in:
- lib/hcloud/resources/ssh_key.rb
Overview
Represents a SSH key
List all SSH keys
HCloud::SSHKey.all
# => [#<HCloud::SSHKey id: 1, ...>, ...]
Sort SSH keys
HCloud::SSHKey.sort(name: :desc)
# => [#<HCloud::SSHKey id: 1, ...>, ...]
HCloud::SSHKey.sort(:id, name: :asc)
# => [#<HCloud::SSHKey id: 1, ...>, ...]
Search SSH keys
HCloud::SSHKey.where(name: "cx11")
# => #<HCloud::SSHKey id: 1, ...>
HCloud::SSHKey.where(fingerprint: "B6:6C:CD:DA:A2:24:43:39:98:80:0F:F5:51:17:7E")
# => #<HCloud::SSHKey id: 1, ...>
HCloud::SSHKey.where(label_selector: { environment: "production" })
# => #<HCloud::SSHKey id: 1, ...>
Find SSH key by ID
HCloud::SSHKey.find(1)
# => #<HCloud::SSHKey id: 1, ...>
Create SSH key
ssh_key = HCloud::SSHKey.new(name: "my_ssh_key", public_key: File.read("id_rsa.pub"))
ssh_key.create
ssh_key.created?
# => true
firewall = HCloud::SSHKey.create(name: "my_ssh_key", public_key: File.read("id_rsa.pub"))
# => #<HCloud::SSHKey id: 1, ...>
Update SSH key
ssh_key = HCloud::SSHKey.find(1)
ssh_key.name = "another_ssh_key"
ssh_key.update
Delete SSH key
ssh_key = HCloud::SSHKey.find(1)
ssh_key.delete
ssh_key.deleted?
# => true
Instance Method Summary collapse
Methods inherited from Resource
#==, attribute, client, #initialize, #inspect, resource_name, #to_h
Constructor Details
This class inherits a constructor from HCloud::Resource
Instance Method Details
#creatable_attributes ⇒ Object
71 72 73 |
# File 'lib/hcloud/resources/ssh_key.rb', line 71 def creatable_attributes [:name, :public_key, :labels] end |
#updatable_attributes ⇒ Object
75 76 77 |
# File 'lib/hcloud/resources/ssh_key.rb', line 75 def updatable_attributes [:name, :labels] end |