fog/fog-openstack

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

Summary

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

module Fog
  module OpenStack
    class Compute
      class OsInterface < Fog::OpenStack::Model
        identity  :port_id
        attribute :fixed_ips, :type => :array
        attribute :mac_addr
        attribute :net_id
        attribute :port_state
      end
    end
  end
end