2009-09-16 02:11:06 -04:00
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
class EC2
|
|
|
|
|
2010-01-08 14:29:07 -05:00
|
|
|
class Server < Fog::Model
|
2009-09-16 02:11:06 -04:00
|
|
|
|
2009-12-05 17:53:42 -05:00
|
|
|
identity :id, 'instanceId'
|
2009-10-24 01:23:55 -04:00
|
|
|
|
2010-02-20 16:12:04 -05:00
|
|
|
attribute :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
|
2010-02-20 16:12:04 -05:00
|
|
|
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
|
2010-02-20 16:12:04 -05:00
|
|
|
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
|
2010-02-20 16:12:04 -05:00
|
|
|
attribute :root_device_name, 'rootDeviceName'
|
|
|
|
attribute :root_device_type, 'rootDeviceType'
|
|
|
|
attribute :state, 'instanceState'
|
2009-09-16 02:11:06 -04:00
|
|
|
attribute :user_data
|
|
|
|
|
2010-01-21 23:11:14 -05:00
|
|
|
def initialize(attributes)
|
2010-01-26 01:46:18 -05:00
|
|
|
@groups ||= ["default"]
|
2010-01-21 23:11:14 -05:00
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2009-10-20 22:39:57 -04:00
|
|
|
def addresses
|
2009-12-05 17:53:42 -05:00
|
|
|
requires :id
|
2009-11-21 16:56:39 -05:00
|
|
|
|
2010-01-08 14:29:07 -05:00
|
|
|
connection.addresses(:server => self)
|
2009-09-18 03:01:10 -04:00
|
|
|
end
|
|
|
|
|
2009-09-20 12:21:03 -04:00
|
|
|
def destroy
|
2009-12-05 17:53:42 -05:00
|
|
|
requires :id
|
2009-11-21 16:56:39 -05:00
|
|
|
|
2009-12-05 17:53:42 -05:00
|
|
|
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
|
|
|
|
# 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
|
|
|
|
|
2010-01-13 00:59:39 -05:00
|
|
|
def flavor_id
|
|
|
|
@flavor && @flavor.id || 'm1.small'
|
2010-01-10 16:22:18 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def flavor=(new_flavor)
|
2010-01-13 00:59:39 -05:00
|
|
|
@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
|
2009-11-21 16:56:39 -05:00
|
|
|
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)
|
2009-10-21 21:50:15 -04:00
|
|
|
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
|
|
|
|
|
2010-01-13 00:59:39 -05:00
|
|
|
def ready?
|
|
|
|
@state == 'running'
|
|
|
|
end
|
|
|
|
|
2009-11-21 13:42:20 -05:00
|
|
|
def reboot
|
2009-12-05 17:53:42 -05:00
|
|
|
requires :id
|
|
|
|
connection.reboot_instances(@id)
|
2009-11-21 13:42:20 -05:00
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2009-09-16 02:11:06 -04:00
|
|
|
def save
|
2009-11-21 16:56:39 -05:00
|
|
|
requires :image_id
|
|
|
|
|
2010-01-10 16:22:18 -05:00
|
|
|
options = {'InstanceType' => flavor}
|
2009-09-16 02:11:06 -04:00
|
|
|
if @availability_zone
|
|
|
|
options['Placement.AvailabilityZone'] = @availability_zone
|
|
|
|
end
|
2010-01-31 17:07:26 -05:00
|
|
|
unless @groups.empty?
|
|
|
|
options.merge!(AWS.indexed_param("SecurityGroup", @groups))
|
2009-09-16 02:11:06 -04:00
|
|
|
end
|
|
|
|
if @kernel_id
|
|
|
|
options['KernelId'] = @kernel_id
|
|
|
|
end
|
|
|
|
if @key_name
|
|
|
|
options['KeyName'] = @key_name
|
|
|
|
end
|
|
|
|
if @monitoring
|
|
|
|
options['Monitoring.Enabled'] = @monitoring
|
|
|
|
end
|
|
|
|
if @ramdisk_id
|
|
|
|
options['RamdiskId'] = @ramdisk_id
|
|
|
|
end
|
|
|
|
if @user_data
|
2009-10-21 17:50:27 -04:00
|
|
|
options['UserData'] = @user_data
|
2009-09-16 02:11:06 -04:00
|
|
|
end
|
|
|
|
data = connection.run_instances(@image_id, 1, 1, options)
|
|
|
|
merge_attributes(data.body['instancesSet'].first)
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2009-09-19 15:31:15 -04:00
|
|
|
def volumes
|
2009-12-05 17:53:42 -05:00
|
|
|
requires :id
|
2009-11-21 16:56:39 -05:00
|
|
|
|
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
|
|
|
|
|
2009-12-05 17:53:42 -05:00
|
|
|
def state=(new_state)
|
|
|
|
if new_state.is_a?(Hash)
|
|
|
|
@state = new_state['name']
|
2009-10-23 12:30:19 -04:00
|
|
|
else
|
2009-12-05 17:53:42 -05:00
|
|
|
@state = new_state
|
2009-10-23 12:30:19 -04:00
|
|
|
end
|
2009-09-16 02:11:06 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|