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/ec2/key_pairs.rb

43 lines
947 B
Ruby
Raw Normal View History

2009-08-13 01:33:35 -04:00
module Fog
module AWS
class EC2
def key_pairs
Fog::AWS::EC2::KeyPairs.new(:connection => self)
end
class KeyPairs < Fog::Collection
2009-08-19 12:11:26 -04:00
def all(key_name = [])
data = connection.describe_key_pairs(key_name).body
key_pairs = Fog::AWS::EC2::KeyPairs.new(:connection => connection)
2009-08-13 01:33:35 -04:00
data['keySet'].each do |key|
key_pairs << Fog::AWS::EC2::KeyPair.new({
:connection => connection,
:key_pairs => self
2009-08-13 01:33:35 -04:00
}.merge!(key))
end
key_pairs
end
def create(attributes = {})
bucket = new(attributes)
bucket.save
bucket
end
def new(attributes = {})
2009-09-20 12:21:03 -04:00
Fog::AWS::EC2::KeyPair.new(
attributes.merge!(
:connection => connection,
:key_pairs => self
)
)
2009-08-13 01:33:35 -04:00
end
end
end
end
end