fog/fog-openstack

View on GitHub
lib/fog/openstack/compute/models/network.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'fog/openstack/models/model'

module Fog
  module OpenStack
    class Compute
      class Network < Fog::OpenStack::Model
        identity  :id
        attribute :name
        attribute :addresses
      end
    end
  end
end