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_pairs.rb

41 lines
985 B
Ruby
Raw Normal View History

2010-10-04 14:02:08 -07:00
require 'fog/core/collection'
2010-09-08 14:40:02 -07:00
require 'fog/aws/models/compute/key_pair'
2010-03-16 15:46:21 -07:00
2009-08-12 22:33:35 -07:00
module Fog
module AWS
2010-09-08 14:40:02 -07:00
class Compute
2009-08-12 22:33:35 -07:00
class KeyPairs < Fog::Collection
attribute :filters
attribute :key_name
2010-09-08 14:40:02 -07:00
model Fog::AWS::Compute::KeyPair
def initialize(attributes)
self.filters ||= {}
super
end
def all(filters = filters)
unless filters.is_a?(Hash)
Formatador.display_line("[yellow][WARN] all with #{filters.class} param is deprecated, use all('key-name' => []) instead[/] [light_black](#{caller.first})[/]")
filters = {'key-name' => [*filters]}
end
self.filters = filters
data = connection.describe_key_pairs(filters).body
load(data['keySet'])
2009-08-12 22:33:35 -07:00
end
def get(key_name)
2009-10-22 20:46:15 -07:00
if key_name
self.class.new(:connection => connection).all('key-name' => key_name).first
2009-10-22 20:46:15 -07:00
end
end
2009-08-12 22:33:35 -07:00
end
end
end
end