Sha256: 8a8d0c2a39130dffb5f98317838dc69a395811c970a7f395ee74191202378c70
Contents?: true
Size: 1.93 KB
Versions: 11
Compression:
Stored size: 1.93 KB
Contents
require 'fog/core/collection' require 'fog/google/models/compute/image' module Fog module Compute class Google class Images < Fog::Collection model Fog::Compute::Google::Image # NOTE: Not everyone has access to these projects because of the # licenses needed to use some of them. # https://developers.google.com/compute/docs/premium-operating-systems GLOBAL_PROJECTS = [ 'centos-cloud', 'coreos-cloud', 'debian-cloud', 'google-containers', 'opensuse-cloud', 'rhel-cloud', 'suse-cloud', 'ubuntu-os-cloud' ] def all data = [] all_projects = [ self.service.project ] + global_projects 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 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 return nil if data.nil? new(data) end private def global_projects GLOBAL_PROJECTS + self.service.extra_global_projects end end end end end
Version data entries
11 entries across 9 versions & 3 rubygems