Module: Fog::Attributes::InstanceMethods

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

Instance Method Summary collapse

Instance Method Details

#_dumpObject



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

def _dump
  Marshal.dump(attributes)
end

#attributesObject



124
125
126
127
128
129
130
# File 'lib/fog/attributes.rb', line 124

def attributes
  attributes = {}
  for attribute in self.class.attributes
    attributes[attribute] = send("#{attribute}")
  end
  attributes
end

#identityObject



132
133
134
# File 'lib/fog/attributes.rb', line 132

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

#identity=(new_identity) ⇒ Object



136
137
138
# File 'lib/fog/attributes.rb', line 136

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

#merge_attributes(new_attributes = {}) ⇒ Object



140
141
142
143
144
145
146
147
148
149
150
151
# File 'lib/fog/attributes.rb', line 140

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)
      else
        send("#{key}=", value)
      end
    end
  end
  self
end

#new_record?Boolean

Returns:

  • (Boolean)


153
154
155
# File 'lib/fog/attributes.rb', line 153

def new_record?
  !identity
end

#requires(*args) ⇒ Object



157
158
159
160
161
162
163
164
165
166
167
168
169
# File 'lib/fog/attributes.rb', line 157

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