Method: Akeyless::TargetUpdateSsh#==
- Defined in:
- lib/akeyless/models/target_update_ssh.rb
#==(o) ⇒ Object
Checks equality by comparing each attribute.
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 |
# File 'lib/akeyless/models/target_update_ssh.rb', line 221 def ==(o) return true if self.equal?(o) self.class == o.class && description == o.description && host == o.host && json == o.json && keep_prev_version == o.keep_prev_version && key == o.key && max_versions == o.max_versions && name == o.name && new_name == o.new_name && port == o.port && private_key == o.private_key && private_key_password == o.private_key_password && ssh_password == o.ssh_password && ssh_username == o.ssh_username && token == o.token && uid_token == o.uid_token end |