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/server.rb

179 lines
4.8 KiB
Ruby
Raw Normal View History

2010-03-16 18:46:21 -04:00
require 'fog/model'
2009-09-16 02:11:06 -04:00
module Fog
module AWS
2010-03-16 18:46:21 -04:00
module EC2
2009-09-16 02:11:06 -04:00
2010-01-08 14:29:07 -05:00
class Server < Fog::Model
2009-09-16 02:11:06 -04:00
identity :id, 'instanceId'
attr_accessor :architecture
attribute :ami_launch_index, 'amiLaunchIndex'
attribute :availability_zone, 'availabilityZone'
attribute :block_device_mapping, 'blockDeviceMapping'
attribute :dns_name, 'dnsName'
2010-01-21 23:11:14 -05:00
attribute :groups
attribute :flavor_id, 'instanceType'
attribute :image_id, 'imageId'
attribute :ip_address, 'ipAddress'
attribute :kernel_id, 'kernelId'
attribute :key_name, 'keyName'
attribute :created_at, 'launchTime'
2009-09-16 02:11:06 -04:00
attribute :monitoring
attribute :product_codes, 'productCodes'
attribute :private_dns_name, 'privateDnsName'
attribute :private_ip_address, 'privateIpAddress'
attribute :ramdisk_id, 'ramdiskId'
2009-09-16 02:11:06 -04:00
attribute :reason
attribute :root_device_name, 'rootDeviceName'
attribute :root_device_type, 'rootDeviceType'
attribute :state, 'instanceState'
attribute :subnet_id, 'subnetId'
2009-09-16 02:11:06 -04:00
attribute :user_data
def initialize(attributes={})
@groups ||= ["default"] if attributes[:subnet_id].blank?
@flavor_id ||= 'm1.small'
2010-01-21 23:11:14 -05:00
super
end
def addresses
requires :id
2010-01-08 14:29:07 -05:00
connection.addresses(:server => self)
end
def console_output
requires :id
connection.get_console_output(@id)
end
2009-09-20 12:21:03 -04:00
def destroy
requires :id
connection.terminate_instances(@id)
2009-09-16 02:11:06 -04:00
true
end
2009-09-18 11:56:27 -04:00
# def security_group
2010-08-17 11:45:18 -04:00
# connection.security_groups.all(@group_id)
2009-09-18 11:42:47 -04:00
# end
#
2009-09-18 11:56:27 -04:00
# def security_group=(new_security_group)
# @group_id = new_security_group.name
2009-09-18 11:42:47 -04:00
# end
def flavor_id
@flavor && @flavor.id || @flavor_id
2010-01-10 16:22:18 -05:00
end
def flavor=(new_flavor)
@flavor = new_flavor
end
def flavor
@flavor ||= connection.flavors.all.detect {|flavor| flavor.id == @flavor_id}
2010-01-10 16:22:18 -05:00
end
2009-09-18 11:42:47 -04:00
def key_pair
requires :key_name
2009-09-18 11:42:47 -04:00
connection.keypairs.all(@key_name).first
end
def key_pair=(new_keypair)
@key_name = new_keypair.name
end
2009-09-16 02:11:06 -04:00
def monitoring=(new_monitoring)
if new_monitoring.is_a?(Hash)
@monitoring = new_monitoring['state']
else
@monitoring = new_monitoring
end
end
def placement=(new_placement)
if new_placement.is_a?(Hash)
2009-09-16 02:11:06 -04:00
@availability_zone = new_placement['availabilityZone']
else
@availability_zone = new_placement
end
end
def ready?
@state == 'running'
end
def reboot
requires :id
connection.reboot_instances(@id)
true
end
2009-09-16 02:11:06 -04:00
def save
requires :image_id
options = {
'BlockDeviceMapping' => @block_device_mapping,
'InstanceType' => flavor_id,
'KernelId' => @kernel_id,
'KeyName' => @key_name,
'Monitoring.Enabled' => @monitoring,
'Placement.AvailabilityZone' => @availability_zone,
'RamdiskId' => @ramdisk_id,
'SecurityGroup' => @groups,
'SubnetId' => subnet_id,
'UserData' => @user_data
}
2010-08-17 11:45:18 -04:00
# If subnet is defined we are working on a virtual private cloud.
# subnet & security group cannot co-exist. I wish VPC just ignored
# the security group parameter instead, it would be much easier!
if subnet_id.blank?
options.delete('SubnetId')
else
options.delete('SecurityGroup')
end
2009-09-16 02:11:06 -04:00
data = connection.run_instances(@image_id, 1, 1, options)
merge_attributes(data.body['instancesSet'].first)
true
end
2010-07-23 00:52:27 -04:00
def start
requires :id
2010-07-23 15:16:19 -04:00
connection.start_instances(@id)
2010-07-23 00:52:27 -04:00
true
end
def stop
requires :id
connection.stop_instances(@id)
true
end
2009-09-19 15:31:15 -04:00
def volumes
requires :id
2010-01-08 14:29:07 -05:00
connection.volumes(:server => self)
2009-09-19 15:31:15 -04:00
end
2009-09-16 02:11:06 -04:00
private
def state=(new_state)
if new_state.is_a?(Hash)
@state = new_state['name']
else
@state = new_state
end
2009-09-16 02:11:06 -04:00
end
end
end
end
end