Method: Akeyless::CreateSSHTarget#==
- Defined in:
- lib/akeyless/models/create_ssh_target.rb
#==(o) ⇒ Object
Checks equality by comparing each attribute.
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 |
# File 'lib/akeyless/models/create_ssh_target.rb', line 179 def ==(o) return true if self.equal?(o) self.class == o.class && comment == o.comment && host == o.host && json == o.json && key == o.key && name == o.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 |