Class: Fog::Compute::DigitalOcean::SshKey
- Defined in:
- lib/fog/digitalocean/models/compute/ssh_key.rb
Instance Attribute Summary
Attributes inherited from Model
Instance Method Summary collapse
Methods inherited from Model
#initialize, #inspect, #reload, #symbolize_keys, #to_json, #wait_for
Methods included from Attributes::ClassMethods
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
Methods included from Fog::Core::DeprecatedConnectionAccessors
#connection, #connection=, #prepare_service_value
Methods included from Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Model
Instance Method Details
#destroy ⇒ Object
18 19 20 21 22 23 |
# File 'lib/fog/digitalocean/models/compute/ssh_key.rb', line 18 def destroy requires :id service.destroy_ssh_key id true end |
#save ⇒ Object
11 12 13 14 15 16 |
# File 'lib/fog/digitalocean/models/compute/ssh_key.rb', line 11 def save requires :name, :ssh_pub_key merge_attributes(service.create_ssh_key(name, ssh_pub_key).body['ssh_key']) true end |