2009-09-16 02:11:06 -04:00
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
class EC2
|
|
|
|
|
|
|
|
def instances
|
|
|
|
Fog::AWS::EC2::Instances.new(:connection => self)
|
|
|
|
end
|
|
|
|
|
|
|
|
class Instances < Fog::Collection
|
|
|
|
|
|
|
|
def all(instance_id = [])
|
|
|
|
data = connection.describe_instances(instance_id)
|
|
|
|
instances = Fog::AWS::EC2::Instances.new(:connection => connection)
|
|
|
|
data['instancesSet'].each do |instance|
|
|
|
|
instances << Fog::AWS::EC2::Instances.new({
|
2009-09-19 15:21:31 -04:00
|
|
|
:connection => connection,
|
|
|
|
:instances => self
|
2009-09-16 02:11:06 -04:00
|
|
|
}.merge!(instance))
|
|
|
|
end
|
|
|
|
instances
|
|
|
|
end
|
|
|
|
|
|
|
|
def create(attributes = {})
|
|
|
|
instance = new(attributes)
|
|
|
|
instance.save
|
|
|
|
instance
|
|
|
|
end
|
|
|
|
|
|
|
|
def new(attributes = {})
|
2009-09-20 12:21:03 -04:00
|
|
|
Fog::AWS::EC2::Instance.new(
|
|
|
|
attributes.merge!(
|
|
|
|
:connection => connection,
|
|
|
|
:instances => self
|
|
|
|
)
|
|
|
|
)
|
2009-09-16 02:11:06 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|