Class: Fog::Vcloud::Compute::Ip

Inherits:
Model show all
Defined in:
lib/fog/vcloud/models/compute/ip.rb

Instance Attribute Summary

Attributes inherited from Model

#loaded

Attributes inherited from Model

#collection, #service

Instance Method Summary collapse

Methods inherited from Model

has_up, #link_up, #load_unless_loaded!

Methods inherited from Model

#initialize, #inspect, #symbolize_keys, #to_json, #wait_for

Methods included from Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Core::DeprecatedConnectionAccessors

#connection, #connection=, #prepare_service_value

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one

Constructor Details

This class inherits a constructor from Fog::Model

Instance Method Details

#reloadObject



22
23
24
25
26
# File 'lib/fog/vcloud/models/compute/ip.rb', line 22

def reload
  super
  @changed = false
  self
end

#saveObject



15
16
17
18
19
20
# File 'lib/fog/vcloud/models/compute/ip.rb', line 15

def save
  if @changed
    service.configure_network_ip( href, _compose_network_ip_data )
  end
  true
end