Method: Akeyless::TargetUpdateLinked#==

Defined in:
lib/akeyless/models/target_update_linked.rb

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
# File 'lib/akeyless/models/target_update_linked.rb', line 191

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      add_hosts == o.add_hosts &&
      description == o.description &&
      hosts == o.hosts &&
      json == o.json &&
      keep_prev_version == o.keep_prev_version &&
      name == o.name &&
      new_name == o.new_name &&
      parent_target_name == o.parent_target_name &&
      rm_hosts == o.rm_hosts &&
      token == o.token &&
      type == o.type &&
      uid_token == o.uid_token
end