Method: Akeyless::MigrationStatusReplyObj#==

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

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
# File 'lib/akeyless/models/migration_status_reply_obj.rb', line 210

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      certificates == o.certificates &&
      computers == o.computers &&
      duration_time == o.duration_time &&
      error == o.error &&
      last_status_message == o.last_status_message &&
      max_name_length == o.max_name_length &&
      max_value_length == o.max_value_length &&
      migration_id == o.migration_id &&
      migration_items == o.migration_items &&
      migration_name == o.migration_name &&
      migration_state == o.migration_state &&
      migration_type == o.migration_type &&
      migration_type_name == o.migration_type_name &&
      rotated_secrets == o.rotated_secrets &&
      start_time == o.start_time &&
      sync == o.sync &&
      targets == o.targets
end