Class: Fog::Compute::CloudSigma::VLAN
- Inherits:
-
Fog::CloudSigma::CloudsigmaModel
- Object
- Model
- Fog::CloudSigma::CloudsigmaModel
- Fog::Compute::CloudSigma::VLAN
- Defined in:
- lib/fog/cloudsigma/models/vlan.rb
Instance Attribute Summary
Attributes inherited from Model
Instance Method Summary collapse
- #update ⇒ Object (also: #save)
Methods inherited from Fog::CloudSigma::CloudsigmaModel
model_attribute, model_attribute_array
Methods inherited from Model
#initialize, #inspect, #reload, #symbolize_keys, #to_json, #wait_for
Methods included from Attributes::ClassMethods
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
Methods included from Fog::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
#update ⇒ Object Also known as: save
15 16 17 18 19 20 21 22 23 |
# File 'lib/fog/cloudsigma/models/vlan.rb', line 15 def update requires :identity data = attributes response = service.update_vlan(identity, data) new_attributes = response.body merge_attributes(new_attributes) end |