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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# File 'lib/fog/google/models/compute/servers.rb', line 47

def bootstrap(new_attributes = {})
  name = "fog-#{Time.now.to_i}"
  zone = "us-central1-b"

  disks = new_attributes[:disks]

  if disks.nil? or disks.empty?
    # create the persistent boot disk
    disk_defaults = {
      :name => name,
      :size_gb => 10,
      :zone_name => zone,
      :source_image => "debian-7-wheezy-v20131120",
    }

    # backwards compatibility to pre-v1
    new_attributes[:source_image] = new_attributes[:image_name] if new_attributes[:image_name]

    disk = service.disks.create(disk_defaults.merge(new_attributes))
    disk.wait_for { disk.ready? }
    disks = [disk]
  end

  defaults = {
    :name => name,
    :disks => disks,
    :machine_type => "n1-standard-1",
    :zone_name => zone,
    :private_key_path => File.expand_path("~/.ssh/id_rsa"),
    :public_key_path => File.expand_path("~/.ssh/id_rsa.pub"),
    :username => ENV['USER'],
  }

  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 Fog::Errors::NotFound
  nil
end