public boolean equals()

in java-operator/src/main/java/com/amazonwebservices/blogs/containers/kubernetes/model/IamUserGroupCustomObject.java [92:104]


  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    IamUserGroupCustomObject that = (IamUserGroupCustomObject) o;
    return Objects.equals(this.apiVersion, that.apiVersion)
        && Objects.equals(this.kind, that.kind)
        && Objects.equals(this.metadata, that.metadata)
        && Objects.equals(this.spec, that.spec);
  }