Class: Fog::Compute::Google::Images

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

Constant Summary collapse

GLOBAL_PROJECTS =

NOTE: Not everyone has access to these projects because of the licenses needed to use some of them. developers.google.com/compute/docs/premium-operating-systems

[
  'centos-cloud',
  'coreos-cloud',
  'debian-cloud',
  'google-containers',
  'opensuse-cloud',
  'rhel-cloud',
  'suse-cloud'
]

Instance Method Summary collapse

Instance Method Details

#allObject



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

def all
  data = []
  all_projects = GLOBAL_PROJECTS + [ self.service.project ]

  all_projects.each do |project|
    begin
      images = service.list_images(project).body["items"] || []

      # Keep track of the project in which we found the image(s)
      images.each { |img| img[:project] = project }
      data += images
    rescue Fog::Errors::NotFound
      # Not everyone has access to every Global Project. Requests
      # return 404 if you don't have access.
      next
    end
  end

  load(data)
end

#get(identity) ⇒ Object



44
45
46
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/images.rb', line 44

def get(identity)
  # Search own project before global projects
  all_projects = [ self.service.project ] + GLOBAL_PROJECTS

  data = nil
  all_projects.each do |project|
    begin
      data = service.get_image(identity, project).body
      data[:project] = project
    rescue Fog::Errors::NotFound
      next
    else
      break
    end
  end

  # If it wasn't found in any project, raise
  return nil if data.nil?

  new(data)

rescue Fog::Errors::NotFound.new(
  "Unable to find the image #{identity} in the following projects: #{all_projects.join(', ')}")

end