Sha256: 49c1c549add01710bdbaed0bc321e526fae933269a31f7b39d87e1c88a5a252d
Contents?: true
Size: 642 Bytes
Versions: 43
Compression:
Stored size: 642 Bytes
Contents
require 'fog/cloudsigma/nested_model' module Fog module Compute class CloudSigma class VLAN < Fog::CloudSigma::CloudsigmaModel identity :uuid attribute :tags attribute :servers attribute :meta attribute :owner attribute :resource_uri, :type => :string attribute :subscription def update requires :identity data = attributes response = service.update_vlan(identity, data) new_attributes = response.body merge_attributes(new_attributes) end alias_method :save, :update end end end end
Version data entries
43 entries across 41 versions & 6 rubygems