2010-10-04 17:02:08 -04:00
|
|
|
require 'fog/core/collection'
|
2010-09-08 17:40:02 -04:00
|
|
|
require 'fog/aws/models/compute/key_pair'
|
2010-03-16 18:46:21 -04:00
|
|
|
|
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 KeyPairs < Fog::Collection
|
|
|
|
|
2009-09-25 12:01:51 -04:00
|
|
|
attribute :key_name
|
|
|
|
|
2010-09-08 17:40:02 -04:00
|
|
|
model Fog::AWS::Compute::KeyPair
|
2009-10-30 02:35:28 -04:00
|
|
|
|
2009-09-28 00:31:15 -04:00
|
|
|
def initialize(attributes)
|
2010-10-04 18:46:12 -04:00
|
|
|
@filters ||= {}
|
2009-09-28 00:31:15 -04:00
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2010-10-04 18:46:12 -04:00
|
|
|
def all(filters = @filters)
|
|
|
|
@filters = filters
|
|
|
|
data = connection.describe_key_pairs(filters).body
|
2010-03-06 23:02:10 -05:00
|
|
|
load(data['keySet'])
|
2009-08-13 01:33:35 -04:00
|
|
|
end
|
|
|
|
|
2009-09-25 12:01:51 -04:00
|
|
|
def get(key_name)
|
2009-10-22 23:46:15 -04:00
|
|
|
if key_name
|
2010-10-04 18:46:12 -04:00
|
|
|
self.class.new(:connection => connection).all('key-name' => key_name).first
|
2009-10-22 23:46:15 -04:00
|
|
|
end
|
2009-09-25 12:01:51 -04:00
|
|
|
end
|
|
|
|
|
2009-08-13 01:33:35 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|