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