mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
31 lines
452 B
Ruby
31 lines
452 B
Ruby
![]() |
require 'fog/model'
|
||
|
|
||
|
module Fog
|
||
|
module Terremark
|
||
|
module Shared
|
||
|
|
||
|
class Network < Fog::Model
|
||
|
|
||
|
identity :id
|
||
|
|
||
|
attribute :name
|
||
|
attribute :subnet
|
||
|
attribute :gateway
|
||
|
attribute :netmask
|
||
|
attribute :fencemode
|
||
|
attribute :links
|
||
|
|
||
|
private
|
||
|
|
||
|
def href=(new_href)
|
||
|
@id = new_href.split('/').last.to_i
|
||
|
end
|
||
|
|
||
|
def type=(new_type); end
|
||
|
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|