Sha256: 4724027cf7db11580fccc1499ce74661e10f3291bc87228b67210179e575faea
Contents?: true
Size: 513 Bytes
Versions: 34
Compression:
Stored size: 513 Bytes
Contents
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
Version data entries
34 entries across 32 versions & 6 rubygems