in java-operator/src/main/java/com/amazonwebservices/blogs/containers/kubernetes/model/IamUserGroupCustomObjectList.java [103:115]
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
IamUserGroupCustomObjectList that = (IamUserGroupCustomObjectList) o;
return Objects.equals(this.apiVersion, that.apiVersion)
&& Objects.equals(this.items, that.items)
&& Objects.equals(this.kind, that.kind)
&& Objects.equals(this.metadata, that.metadata);
}