Class: Fog::Compute::Cloudstack::Server
- Defined in:
- lib/fog/cloudstack/models/compute/server.rb
Instance Attribute Summary collapse
-
#disk_offering_id ⇒ Object
Returns the value of attribute disk_offering_id.
-
#ip_address ⇒ Object
Returns the value of attribute ip_address.
-
#ip_to_network_list ⇒ Object
Returns the value of attribute ip_to_network_list.
-
#network_ids ⇒ Object
Returns the value of attribute network_ids.
- #security_group_ids ⇒ Object
Attributes inherited from Server
#private_key, #private_key_path, #public_key, #public_key_path, #ssh_port, #username
Attributes inherited from Model
Instance Method Summary collapse
- #addresses ⇒ Object
- #destroy ⇒ Object
- #flavor ⇒ Object
- #ready? ⇒ Boolean
- #reboot ⇒ Object
- #save ⇒ Object
- #security_groups ⇒ Object
- #security_groups=(security_groups) ⇒ Object
- #start ⇒ Object
- #stop(force = false) ⇒ Object
Methods inherited from Server
#scp, #scp_download, #ssh, #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 Fog::Core::DeprecatedConnectionAccessors
#connection, #connection=, #prepare_service_value
Methods included from Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Model
Instance Attribute Details
#disk_offering_id ⇒ Object
Returns the value of attribute disk_offering_id.
40 41 42 |
# File 'lib/fog/cloudstack/models/compute/server.rb', line 40 def disk_offering_id @disk_offering_id end |
#ip_address ⇒ Object
Returns the value of attribute ip_address.
40 41 42 |
# File 'lib/fog/cloudstack/models/compute/server.rb', line 40 def ip_address @ip_address end |
#ip_to_network_list ⇒ Object
Returns the value of attribute ip_to_network_list.
40 41 42 |
# File 'lib/fog/cloudstack/models/compute/server.rb', line 40 def ip_to_network_list @ip_to_network_list end |
#network_ids ⇒ Object
Returns the value of attribute network_ids.
40 41 42 |
# File 'lib/fog/cloudstack/models/compute/server.rb', line 40 def network_ids @network_ids end |
#security_group_ids ⇒ Object
71 72 73 |
# File 'lib/fog/cloudstack/models/compute/server.rb', line 71 def security_group_ids @security_group_ids || (self.security_group_list || []).map{|sg| sg["id"]} end |
Instance Method Details
#addresses ⇒ Object
43 44 45 |
# File 'lib/fog/cloudstack/models/compute/server.rb', line 43 def addresses nics.map{|nic| Address.new(nic)} end |
#destroy ⇒ Object
47 48 49 50 51 |
# File 'lib/fog/cloudstack/models/compute/server.rb', line 47 def destroy requires :id data = service.destroy_virtual_machine("id" => id) service.jobs.new(data["destroyvirtualmachineresponse"]) end |
#flavor ⇒ Object
53 54 55 |
# File 'lib/fog/cloudstack/models/compute/server.rb', line 53 def flavor service.flavors.get(self.flavor_id) end |
#ready? ⇒ Boolean
57 58 59 |
# File 'lib/fog/cloudstack/models/compute/server.rb', line 57 def ready? state == 'Running' end |
#reboot ⇒ Object
61 62 63 64 65 |
# File 'lib/fog/cloudstack/models/compute/server.rb', line 61 def reboot requires :id data = service.reboot_virtual_machine('id' => self.id) # FIXME: does this ever fail? service.jobs.new(data["rebootvirtualmachineresponse"]) end |
#save ⇒ Object
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
# File 'lib/fog/cloudstack/models/compute/server.rb', line 79 def save requires :image_id, :flavor_id, :zone_id = { 'templateid' => image_id, 'serviceofferingid' => flavor_id, 'zoneid' => zone_id, 'networkids' => network_ids, 'diskofferingid' => disk_offering_id, 'displayname' => display_name, 'group' => group, 'domainid' => domain_id, 'hostid' => host_id, 'ipaddress' => ip_address, 'iptonetworklist' => ip_to_network_list, 'projectid' => project_id, } .merge!('networkids' => network_ids) if network_ids .merge!('securitygroupids' => security_group_ids) unless security_group_ids.empty? data = service.deploy_virtual_machine() merge_attributes(data['deployvirtualmachineresponse']) end |
#security_groups ⇒ Object
75 76 77 |
# File 'lib/fog/cloudstack/models/compute/server.rb', line 75 def security_groups security_group_ids.map{|id| service.security_groups.get(id)} end |
#security_groups=(security_groups) ⇒ Object
67 68 69 |
# File 'lib/fog/cloudstack/models/compute/server.rb', line 67 def security_groups=(security_groups) self.security_group_ids= Array(security_groups).map(&:id) end |
#start ⇒ Object
104 105 106 107 108 |
# File 'lib/fog/cloudstack/models/compute/server.rb', line 104 def start requires :id data = service.start_virtual_machine("id" => self.id) service.jobs.new(data["startvirtualmachineresponse"]) end |
#stop(force = false) ⇒ Object
110 111 112 113 114 |
# File 'lib/fog/cloudstack/models/compute/server.rb', line 110 def stop(force=false) requires :id data = service.stop_virtual_machine("id" => self.id, "force" => force) service.jobs.new(data["stopvirtualmachineresponse"]) end |