Class: Fog::Compute::Voxel::Server

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

Instance Attribute Summary

Attributes inherited from Server

#private_key, #private_key_path, #public_key, #public_key_path, #ssh_options, #ssh_port, #username

Attributes inherited from Model

#collection, #service

Instance Method Summary collapse

Methods inherited from Server

#scp, #scp_download, #ssh, #ssh_ip_address, #ssh_ip_address=, #sshable?

Methods inherited from Model

#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

#initialize(attributes = {}) ⇒ Server

Returns a new instance of Server.



18
19
20
21
# File 'lib/fog/voxel/models/compute/server.rb', line 18

def initialize(attributes={})
  self.image_id ||= '55' # Ubuntu 10.04 LTS 64bit
  super
end

Instance Method Details

#destroyObject



23
24
25
26
27
# File 'lib/fog/voxel/models/compute/server.rb', line 23

def destroy
  requires :id
  service.voxcloud_delete(id)
  true
end

#imageObject



29
30
31
32
# File 'lib/fog/voxel/models/compute/server.rb', line 29

def image
  requires :image_id
  service.images.get(image_id)
end

#private_ip_addressObject



38
39
40
# File 'lib/fog/voxel/models/compute/server.rb', line 38

def private_ip_address
  ip_assignments.select {|ip_assignment| ip_assignment['type'] == 'internal'}.first
end

#public_ip_addressObject



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

def public_ip_address
  ip_assignments.select {|ip_assignment| ip_assignment['type'] == 'external'}.first
end

#ready?Boolean

Returns:

  • (Boolean)


34
35
36
# File 'lib/fog/voxel/models/compute/server.rb', line 34

def ready?
  self.state == 'SUCCEEDED'
end

#rebootObject



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

def reboot
  requires :id
  service.devices_power(id, :reboot)
  true
end

#saveObject

Raises:



56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'lib/fog/voxel/models/compute/server.rb', line 56

def save
  raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if persisted?
  requires :name, :image_id, :processing_cores, :facility, :disk_size

  data = service.voxcloud_create({
    :disk_size => disk_size,
    :facility => facility,
    :hostname => name,
    :image_id => image_id,
    :processing_cores => processing_cores
  }).body

  merge_attributes(data['device'])

  true
end

#stateObject



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

def state
  @state ||= service.voxcloud_status(id).body['devices'].first['status']
end