1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/vcloud/terremark/ecloud/models/ip.rb
2010-06-11 01:53:25 +08:00

18 lines
251 B
Ruby

require 'fog/model'
module Fog
module Vcloud
module Terremark
module Ecloud
class Ip < Fog::Vcloud::Model
identity :name
attribute :status
attribute :server
end
end
end
end
end