Class: Fog::Compute::Cloudstack::Server

Inherits:
Server show all
Defined in:
lib/fog/cloudstack/models/compute/server.rb

Instance Attribute Summary collapse

Attributes inherited from Model

#collection, #connection

Instance Method Summary collapse

Methods inherited from Server

#private_key=, #scp, #scp_download, #ssh, #ssh_port, #sshable?

Methods inherited from Model

#initialize, #inspect, #reload, #symbolize_keys, #to_json, #wait_for

Methods included from Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one

Constructor Details

This class inherits a constructor from Fog::Model

Instance Attribute Details

#disk_offering_idObject

Returns the value of attribute disk_offering_id.



39
40
41
# File 'lib/fog/cloudstack/models/compute/server.rb', line 39

def disk_offering_id
  @disk_offering_id
end

#ip_addressObject

Returns the value of attribute ip_address.



39
40
41
# File 'lib/fog/cloudstack/models/compute/server.rb', line 39

def ip_address
  @ip_address
end

#ip_to_network_listObject

Returns the value of attribute ip_to_network_list.



39
40
41
# File 'lib/fog/cloudstack/models/compute/server.rb', line 39

def ip_to_network_list
  @ip_to_network_list
end

#network_idsObject

Returns the value of attribute network_ids.



39
40
41
# File 'lib/fog/cloudstack/models/compute/server.rb', line 39

def network_ids
  @network_ids
end

#security_group_idsObject



70
71
72
# File 'lib/fog/cloudstack/models/compute/server.rb', line 70

def security_group_ids
  @security_group_ids || (self.security_group_list || []).map{|sg| sg["id"]}
end

Instance Method Details

#addressesObject



42
43
44
# File 'lib/fog/cloudstack/models/compute/server.rb', line 42

def addresses
  nics.map{|nic| Address.new(nic)}
end

#destroyObject



46
47
48
49
50
# File 'lib/fog/cloudstack/models/compute/server.rb', line 46

def destroy
  requires :id
  data = connection.destroy_virtual_machine("id" => id)
  connection.jobs.new(data["destroyvirtualmachineresponse"])
end

#flavorObject



52
53
54
# File 'lib/fog/cloudstack/models/compute/server.rb', line 52

def flavor
  connection.flavors.get(self.flavor_id)
end

#ready?Boolean

Returns:

  • (Boolean)


56
57
58
# File 'lib/fog/cloudstack/models/compute/server.rb', line 56

def ready?
  state == 'Running'
end

#rebootObject



60
61
62
63
64
# File 'lib/fog/cloudstack/models/compute/server.rb', line 60

def reboot
  requires :id
  data = connection.reboot_virtual_machine('id' => self.id) # FIXME: does this ever fail?
  connection.jobs.new(data["rebootvirtualmachineresponse"])
end

#saveObject



78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# File 'lib/fog/cloudstack/models/compute/server.rb', line 78

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,
    'displayname'       => display_name,
    'domainid'          => domain_id,
    'hostid'            => host_id,
    'ipaddress'         => ip_address,
    'iptonetworklist'   => ip_to_network_list,
    'projectid'         => project_id,
  }

  options.merge!('networkids' => network_ids) if network_ids
  options.merge!('securitygroupids' => security_group_ids) if security_group_ids

  data = connection.deploy_virtual_machine(options)
  merge_attributes(data['deployvirtualmachineresponse'])
end

#security_groupsObject



74
75
76
# File 'lib/fog/cloudstack/models/compute/server.rb', line 74

def security_groups
  security_group_ids.map{|id| self.connection.security_groups.get(id)}
end

#security_groups=(security_groups) ⇒ Object



66
67
68
# File 'lib/fog/cloudstack/models/compute/server.rb', line 66

def security_groups=(security_groups)
  self.security_group_ids= Array(security_groups).map(&:id)
end

#startObject



102
103
104
105
106
# File 'lib/fog/cloudstack/models/compute/server.rb', line 102

def start
  requires :id
  data = connection.start_virtual_machine("id" => self.id)
  connection.jobs.new(data["startvirtualmachineresponse"])
end

#stop(force = false) ⇒ Object



108
109
110
111
112
# File 'lib/fog/cloudstack/models/compute/server.rb', line 108

def stop(force=false)
  requires :id
  data = connection.stop_virtual_machine("id" => self.id, "force" => force)
  connection.jobs.new(data["stopvirtualmachineresponse"])
end