2009-08-13 01:33:35 -04:00
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
class EC2
|
|
|
|
|
|
|
|
class KeyPair < Fog::Model
|
|
|
|
|
2009-09-05 23:50:40 -04:00
|
|
|
attribute :fingerprint, 'keyFingerprint'
|
|
|
|
attribute :material, 'keyMaterial'
|
|
|
|
attribute :name, 'keyName'
|
2009-08-13 01:33:35 -04:00
|
|
|
|
|
|
|
def delete
|
|
|
|
connection.delete_key_pair(@name)
|
2009-09-05 23:50:40 -04:00
|
|
|
true
|
2009-08-13 01:33:35 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def save
|
2009-08-14 12:19:40 -04:00
|
|
|
data = connection.create_key_pair(@name).body
|
|
|
|
new_attributes = data.reject {|key,value| !['keyFingerprint', 'keyMaterial', 'keyName'].include?(key)}
|
2009-08-13 01:33:35 -04:00
|
|
|
update_attributes(new_attributes)
|
2009-09-05 23:50:40 -04:00
|
|
|
true
|
2009-08-13 01:33:35 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|