mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
43 lines
870 B
Ruby
43 lines
870 B
Ruby
|
module Fog
|
||
|
module Vcloud
|
||
|
class Compute
|
||
|
class Ip < Fog::Vcloud::Model
|
||
|
|
||
|
ignore_attributes :xmlns_i, :xmlns
|
||
|
|
||
|
identity :href, :aliases => :Href
|
||
|
|
||
|
attribute :name, :aliases => :Name
|
||
|
attribute :status, :aliases => :Status
|
||
|
attribute :server, :aliases => :Server
|
||
|
attribute :id, :aliases => :Id, :type => :integer
|
||
|
|
||
|
def save
|
||
|
if @changed
|
||
|
connection.configure_network_ip( href, _compose_network_ip_data )
|
||
|
end
|
||
|
true
|
||
|
end
|
||
|
|
||
|
def reload
|
||
|
super
|
||
|
@changed = false
|
||
|
self
|
||
|
end
|
||
|
|
||
|
private
|
||
|
def _compose_network_ip_data
|
||
|
{
|
||
|
:id => id,
|
||
|
:href => href,
|
||
|
:name => name,
|
||
|
:status => status,
|
||
|
:server => server
|
||
|
}
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|