Class: Fog::Compute::Google::Servers

Inherits:
Fog::Collection show all
Defined in:
lib/fog/google/models/compute/servers.rb

Instance Attribute Summary

Attributes inherited from Fog::Collection

#service

Instance Method Summary collapse

Methods inherited from Fog::Collection

#clear, #create, #destroy, #initialize, #inspect, #load, model, #model, #new, #reload, #table, #to_json

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::Collection

Instance Method Details

#all(filters = {}) ⇒ Object



12
13
14
15
16
17
18
19
20
21
22
# File 'lib/fog/google/models/compute/servers.rb', line 12

def all(filters={})
  if filters['zone'].nil?
    data = []
    service.list_zones.body['items'].each do |zone|
      data += service.list_servers(zone['name']).body["items"] || []
    end
  else
    data = service.list_servers(filters['zone']).body["items"] || []
  end
  load(data)
end

#bootstrap(new_attributes = {}) ⇒ Object



47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# File 'lib/fog/google/models/compute/servers.rb', line 47

def bootstrap(new_attributes = {})
  defaults = {
    :name => "fog-#{Time.now.to_i}",
    :image_name => "debian-7-wheezy-v20131014",
    :machine_type => "n1-standard-1",
    :zone_name => "us-central1-b",
    :private_key_path => File.expand_path("~/.ssh/id_rsa"),
    :public_key_path => File.expand_path("~/.ssh/id_rsa.pub"),
    :username => ENV['USER'],
  }

  if new_attributes[:disks]
    new_attributes[:disks].each do |disk|
      defaults.delete :image_name if disk['boot']
    end
  end

  server = create(defaults.merge(new_attributes))
  server.wait_for { sshable? }

  server
end

#get(identity, zone = nil) ⇒ Object



24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/fog/google/models/compute/servers.rb', line 24

def get(identity, zone=nil)
  response = nil
  if zone.nil?
    service.list_zones.body['items'].each do |zone|
      begin
        response = service.get_server(identity, zone['name'])
        break if response.status == 200
      rescue Fog::Errors::Error
      end
    end
  else
    response = service.get_server(identity, zone)
  end

  if response.nil? or response.status != 200
    nil
  else
    new(response.body)
  end
rescue Excon::Errors::NotFound
  nil
end