Method: Akeyless::UpdateAuthMethodOIDC#==
- Defined in:
- lib/akeyless/models/update_auth_method_oidc.rb
#==(o) ⇒ Object
Checks equality by comparing each attribute.
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 |
# File 'lib/akeyless/models/update_auth_method_oidc.rb', line 338 def ==(o) return true if self.equal?(o) self.class == o.class && access_expires == o.access_expires && allowed_client_type == o.allowed_client_type && allowed_redirect_uri == o.allowed_redirect_uri && audience == o.audience && audit_logs_claims == o.audit_logs_claims && bound_ips == o.bound_ips && client_id == o.client_id && client_secret == o.client_secret && delete_protection == o.delete_protection && description == o.description && expiration_event_in == o.expiration_event_in && force_sub_claims == o.force_sub_claims && gw_bound_ips == o.gw_bound_ips && issuer == o.issuer && json == o.json && jwt_ttl == o.jwt_ttl && name == o.name && new_name == o.new_name && product_type == o.product_type && required_scopes == o.required_scopes && required_scopes_prefix == o.required_scopes_prefix && subclaims_delimiters == o.subclaims_delimiters && token == o.token && uid_token == o.uid_token && unique_identifier == o.unique_identifier end |