in cloudwatch-controller/src/main/java/com/amazonwebservices/blogs/containers/kubernetes/model/K8sMetricAlarmCustomObjectList.java [103:115]
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
K8sMetricAlarmCustomObjectList that = (K8sMetricAlarmCustomObjectList) 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);
}