1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/models/compute/key_pair.rb

45 lines
946 B
Ruby
Raw Normal View History

2010-03-16 18:46:21 -04:00
require 'fog/model'
2009-08-13 01:33:35 -04:00
module Fog
module AWS
2010-09-08 17:40:02 -04:00
class Compute
2009-08-13 01:33:35 -04:00
class KeyPair < Fog::Model
extend Fog::Deprecation
deprecate(:material, :private_key)
2009-08-13 01:33:35 -04:00
identity :name, :aliases => 'keyName'
attribute :fingerprint, :aliases => 'keyFingerprint'
attribute :private_key, :aliases => 'keyMaterial'
attr_accessor :public_key
2009-08-13 01:33:35 -04:00
2009-09-20 12:21:03 -04:00
def destroy
requires :name
2009-08-13 01:33:35 -04:00
connection.delete_key_pair(@name)
true
2009-08-13 01:33:35 -04:00
end
def save
requires :name
data = if public_key
connection.import_key_pair(name, public_key).body
else
connection.create_key_pair(name).body
end
2009-08-14 12:19:40 -04:00
new_attributes = data.reject {|key,value| !['keyFingerprint', 'keyMaterial', 'keyName'].include?(key)}
merge_attributes(new_attributes)
true
2009-08-13 01:33:35 -04:00
end
private
2009-08-13 01:33:35 -04:00
end
end
end
end