mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
35 lines
761 B
Ruby
35 lines
761 B
Ruby
![]() |
module Fog
|
||
|
module AWS
|
||
|
class EC2
|
||
|
|
||
|
class KeyPair < Fog::Model
|
||
|
|
||
|
attr_accessor :fingerprint, :material, :name
|
||
|
|
||
|
def initialize(attributes = {})
|
||
|
remap_attributes(attributes, {
|
||
|
'keyFingerprint' => :fingerprint,
|
||
|
'keyMaterial' => :material,
|
||
|
'keyName' => :name
|
||
|
})
|
||
|
super
|
||
|
end
|
||
|
|
||
|
def delete
|
||
|
connection.delete_key_pair(@name)
|
||
|
true
|
||
|
end
|
||
|
|
||
|
def save
|
||
|
data = connection.create_key_pair(@name)
|
||
|
new_attributes = data['Body'].reject {|key,value| !['keyFingerprint', 'keyMaterial', 'keyName'].include?(key)}
|
||
|
update_attributes(new_attributes)
|
||
|
true
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|