class Fog::Compute::Google::Networks

Public Instance Methods

all() click to toggle source
# File lib/fog/compute/google/models/networks.rb, line 7
def all
  data = service.list_networks.to_h[:items]
  load(data || [])
end
get(identity) click to toggle source
# File lib/fog/compute/google/models/networks.rb, line 12
def get(identity)
  if identity
    network = service.get_network(identity).to_h
    return new(network)
  end
rescue ::Google::Apis::ClientError => e
  raise e unless e.status_code == 404
  nil
end