Method: PulpContainerClient::ContainerContainerRemote#==

Defined in:
lib/pulp_container_client/models/container_container_remote.rb

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
# File 'lib/pulp_container_client/models/container_container_remote.rb', line 638

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      name == o.name &&
      url == o.url &&
      pulp_labels == o.pulp_labels &&
      policy == o.policy &&
      ca_cert == o.ca_cert &&
      client_cert == o.client_cert &&
      client_key == o.client_key &&
      tls_validation == o.tls_validation &&
      proxy_url == o.proxy_url &&
      proxy_username == o.proxy_username &&
      proxy_password == o.proxy_password &&
      username == o.username &&
      password == o.password &&
      max_retries == o.max_retries &&
      total_timeout == o.total_timeout &&
      connect_timeout == o.connect_timeout &&
      sock_connect_timeout == o.sock_connect_timeout &&
      sock_read_timeout == o.sock_read_timeout &&
      headers == o.headers &&
      download_concurrency == o.download_concurrency &&
      rate_limit == o.rate_limit &&
      upstream_name == o.upstream_name &&
      include_tags == o.include_tags &&
      exclude_tags == o.exclude_tags &&
      sigstore == o.sigstore
end