Module: Fog::Attributes::InstanceMethods

Included in:
Collection, Model
Defined in:
lib/fog/core/attributes.rb

Instance Method Summary collapse

Instance Method Details

#_dumpObject



116
117
118
# File 'lib/fog/core/attributes.rb', line 116

def _dump
  Marshal.dump(attributes)
end

#attributesObject



120
121
122
# File 'lib/fog/core/attributes.rb', line 120

def attributes
  @attributes ||= {}
end

#identityObject



124
125
126
# File 'lib/fog/core/attributes.rb', line 124

def identity
  send(self.class.instance_variable_get('@identity'))
end

#identity=(new_identity) ⇒ Object



128
129
130
# File 'lib/fog/core/attributes.rb', line 128

def identity=(new_identity)
  send("#{self.class.instance_variable_get('@identity')}=", new_identity)
end

#merge_attributes(new_attributes = {}) ⇒ Object



132
133
134
135
136
137
138
139
140
141
142
143
144
145
# File 'lib/fog/core/attributes.rb', line 132

def merge_attributes(new_attributes = {})
  for key, value in new_attributes
    unless self.class.ignored_attributes.include?(key)
      if aliased_key = self.class.aliases[key]
        send("#{aliased_key}=", value)
      elsif (public_methods | private_methods).detect {|method| ["#{key}=", :"#{key}="].include?(method)}
        send("#{key}=", value)
      else
        attributes[key] = value
      end
    end
  end
  self
end

#new_record?Boolean

Returns:

  • (Boolean)


147
148
149
# File 'lib/fog/core/attributes.rb', line 147

def new_record?
  !identity
end

#requires(*args) ⇒ Object

check that the attributes specified in args exist and is not nil



152
153
154
155
156
157
158
159
160
161
162
163
164
# File 'lib/fog/core/attributes.rb', line 152

def requires(*args)
  missing = []
  for arg in [:connection] | args
    missing << arg unless send("#{arg}")
  end
  unless missing.empty?
    if missing.length == 1
      raise(ArgumentError, "#{missing.first} is required for this operation")
    else
      raise(ArgumentError, "#{missing[0...-1].join(", ")} and #{missing[-1]} are required for this operation")
    end
  end
end