Method: PulpContainerClient::ContainerContainerDistributionResponse#==
- Defined in:
- lib/pulp_container_client/models/container_container_distribution_response.rb
#==(o) ⇒ Object
Checks equality by comparing each attribute.
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 |
# File 'lib/pulp_container_client/models/container_container_distribution_response.rb', line 217 def ==(o) return true if self.equal?(o) self.class == o.class && pulp_created == o.pulp_created && pulp_href == o.pulp_href && pulp_last_updated == o.pulp_last_updated && hidden == o.hidden && content_guard == o.content_guard && name == o.name && pulp_labels == o.pulp_labels && base_path == o.base_path && repository == o.repository && repository_version == o.repository_version && registry_path == o.registry_path && remote == o.remote && namespace == o.namespace && private == o.private && description == o.description end |