require 'fog/core/collection' require 'fog/google/models/compute/route' module Fog module Compute class Google class Routes < Fog::Collection model Fog::Compute::Google::Route def all data = service.list_routes.body load(data['items'] || []) end def get(identity) if route = service.get_route(identity).body new(route) end rescue Fog::Errors::NotFound nil end end end end end