mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
160 lines
6.6 KiB
Ruby
160 lines
6.6 KiB
Ruby
require 'fog/compute/models/server'
|
|
|
|
module Fog
|
|
module Compute
|
|
class Cloudstack
|
|
class Server < Fog::Compute::Server
|
|
identity :id, :aliases => 'id'
|
|
attribute :name
|
|
attribute :account_name, :aliases => 'account'
|
|
attribute :domain_name, :aliases => 'domain'
|
|
attribute :created, :type => :time
|
|
attribute :state
|
|
attribute :haenable
|
|
attribute :memory
|
|
attribute :display_name, :aliases => 'displayname'
|
|
attribute :domain_id, :aliases => 'domainid'
|
|
attribute :host_id, :aliases => 'hostid'
|
|
attribute :host_name, :aliases => 'hostname'
|
|
attribute :project_id, :aliases => 'projectid'
|
|
attribute :zone_id, :aliases => 'zoneid'
|
|
attribute :zone_name, :aliases => 'zonename'
|
|
attribute :image_id, :aliases => ['templateid', :template_id]
|
|
attribute :image_name, :aliases => ['templatename', :template_name]
|
|
attribute :templated_display_text, :aliases => 'templatedisplaytext'
|
|
attribute :password_enabled, :aliases => 'passwordenabled'
|
|
attribute :flavor_id, :aliases => ['serviceofferingid', :service_offering_id]
|
|
attribute :flavor_name, :aliases => ['serviceofferingname', :service_offering_name]
|
|
attribute :cpu_number, :aliases => 'cpunumber'
|
|
attribute :cpu_speed, :aliases => 'cpuspeed'
|
|
attribute :cpu_used, :aliases => 'cpuused'
|
|
attribute :network_kbs_read, :aliases => 'networkkbsread'
|
|
attribute :network_kbs_write, :aliases => 'networkkbswrite'
|
|
attribute :guest_os_id, :aliases => 'guestosid'
|
|
attribute :root_device_id, :aliases => 'rootdeviceid'
|
|
attribute :root_device_type, :aliases => 'rootdevicetype'
|
|
attribute :group
|
|
attribute :key_name, :aliases => 'keypair'
|
|
attribute :user_data, :aliases => 'userdata'
|
|
attribute :security_group_list, :type => :array, :aliases => 'securitygroup'
|
|
attribute :nics, :type => :array, :aliases => 'nic'
|
|
attribute :job_id, :aliases => 'jobid' # only on create
|
|
attribute :size, :type => :integer
|
|
|
|
attr_accessor :network_ids, :disk_offering_id, :ip_address, :ip_to_network_list
|
|
attr_writer :security_group_ids
|
|
|
|
alias_method :public_ip_address, :ip_address
|
|
alias_method :public_ip_address=, :ip_address=
|
|
|
|
def addresses
|
|
nics.map{|nic| Address.new(nic)}
|
|
end
|
|
|
|
def ip_addresses
|
|
addresses.map(&:ip_address)
|
|
end
|
|
|
|
def volumes
|
|
requires :id
|
|
service.volumes.all('virtualmachineid' => id)
|
|
end
|
|
|
|
def reset_password
|
|
requires :id
|
|
data = service.reset_password_for_virtual_machine(id)
|
|
service.jobs.new(data['resetpasswordforvirtualmachineresponse'])
|
|
end
|
|
|
|
def public_ip_addresses
|
|
if public_ip_address.nil? then [public_ip_address] else [] end
|
|
end
|
|
|
|
def private_ip_addresses
|
|
ip_addresses - public_ip_addresses
|
|
end
|
|
|
|
def private_ip_address
|
|
private_ip_addresses.first
|
|
end
|
|
|
|
def destroy(options={})
|
|
requires :id
|
|
data = service.destroy_virtual_machine(options.merge({'id'=> self.id}))
|
|
service.jobs.new(data["destroyvirtualmachineresponse"])
|
|
end
|
|
|
|
def flavor
|
|
service.flavors.get(self.flavor_id)
|
|
end
|
|
|
|
def ready?
|
|
state == 'Running'
|
|
end
|
|
|
|
def reboot
|
|
requires :id
|
|
data = service.reboot_virtual_machine('id' => self.id) # FIXME: does this ever fail?
|
|
service.jobs.new(data["rebootvirtualmachineresponse"])
|
|
end
|
|
|
|
def security_groups=(security_groups)
|
|
self.security_group_ids= Array(security_groups).map(&:id)
|
|
end
|
|
|
|
def security_group_ids
|
|
@security_group_ids || (self.security_group_list || []).map{|sg| sg["id"]}
|
|
end
|
|
|
|
def security_groups
|
|
security_group_ids.map{|id| service.security_groups.get(id)}
|
|
end
|
|
|
|
def save
|
|
requires :image_id, :flavor_id, :zone_id
|
|
|
|
options = {
|
|
'templateid' => image_id,
|
|
'serviceofferingid' => flavor_id,
|
|
'zoneid' => zone_id,
|
|
'networkids' => network_ids,
|
|
'diskofferingid' => disk_offering_id,
|
|
'name' => name,
|
|
'displayname' => display_name,
|
|
'group' => group,
|
|
'domainid' => domain_id,
|
|
'hostid' => host_id,
|
|
'ipaddress' => ip_address,
|
|
'iptonetworklist' => ip_to_network_list,
|
|
'projectid' => project_id,
|
|
'keypair' => key_name,
|
|
'userdata' => user_data,
|
|
'size' => size,
|
|
}
|
|
|
|
options.merge!('networkids' => network_ids) if network_ids
|
|
options.merge!('securitygroupids' => security_group_ids) unless security_group_ids.empty?
|
|
|
|
data = service.deploy_virtual_machine(options)
|
|
merge_attributes(data['deployvirtualmachineresponse'])
|
|
end
|
|
|
|
def start
|
|
requires :id
|
|
data = service.start_virtual_machine("id" => self.id)
|
|
service.jobs.new(data["startvirtualmachineresponse"])
|
|
end
|
|
|
|
def stop(options={})
|
|
requires :id
|
|
unless options.is_a?(Hash)
|
|
Fog::Logger.deprecation("Passing force as a boolean option has been deprecated. Please pass a hash with 'force' => (true|false)")
|
|
options = {'force' => options}
|
|
end
|
|
data = service.stop_virtual_machine(options.merge({'id' => self.id}))
|
|
service.jobs.new(data["stopvirtualmachineresponse"])
|
|
end
|
|
end # Server
|
|
end # Cloudstack
|
|
end # Compute
|
|
end # Fog
|