io.yupiik.kubernetes.bindings.v1_22_10.v1beta1.TopologySpreadConstraint Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2022 - Yupiik SAS - https://www.yupiik.com
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package io.yupiik.kubernetes.bindings.v1_22_10.v1beta1;
import io.yupiik.kubernetes.bindings.v1_22_10.Exportable;
import io.yupiik.kubernetes.bindings.v1_22_10.JsonStrings;
import io.yupiik.kubernetes.bindings.v1_22_10.Validable;
import io.yupiik.kubernetes.bindings.v1_22_10.ValidationException;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.stream.Stream;
import static java.util.stream.Collectors.joining;
public class TopologySpreadConstraint implements Validable, Exportable {
private LabelSelector labelSelector;
private int maxSkew;
private String topologyKey;
private String whenUnsatisfiable;
public TopologySpreadConstraint() {
// no-op
}
public TopologySpreadConstraint(final LabelSelector labelSelector,
final int maxSkew,
final String topologyKey,
final String whenUnsatisfiable) {
this.labelSelector = labelSelector;
this.maxSkew = maxSkew;
this.topologyKey = topologyKey;
this.whenUnsatisfiable = whenUnsatisfiable;
}
public LabelSelector getLabelSelector() {
return labelSelector;
}
public void setLabelSelector(final LabelSelector labelSelector) {
this.labelSelector = labelSelector;
}
public int getMaxSkew() {
return maxSkew;
}
public void setMaxSkew(final int maxSkew) {
this.maxSkew = maxSkew;
}
public String getTopologyKey() {
return topologyKey;
}
public void setTopologyKey(final String topologyKey) {
this.topologyKey = topologyKey;
}
public String getWhenUnsatisfiable() {
return whenUnsatisfiable;
}
public void setWhenUnsatisfiable(final String whenUnsatisfiable) {
this.whenUnsatisfiable = whenUnsatisfiable;
}
@Override
public int hashCode() {
return Objects.hash(
labelSelector,
maxSkew,
topologyKey,
whenUnsatisfiable);
}
@Override
public boolean equals(final Object __other) {
if (!(__other instanceof TopologySpreadConstraint)) {
return false;
}
final TopologySpreadConstraint __otherCasted = (TopologySpreadConstraint) __other;
return Objects.equals(labelSelector, __otherCasted.labelSelector) &&
Objects.equals(maxSkew, __otherCasted.maxSkew) &&
Objects.equals(topologyKey, __otherCasted.topologyKey) &&
Objects.equals(whenUnsatisfiable, __otherCasted.whenUnsatisfiable);
}
public TopologySpreadConstraint labelSelector(final LabelSelector labelSelector) {
this.labelSelector = labelSelector;
return this;
}
public TopologySpreadConstraint maxSkew(final int maxSkew) {
this.maxSkew = maxSkew;
return this;
}
public TopologySpreadConstraint topologyKey(final String topologyKey) {
this.topologyKey = topologyKey;
return this;
}
public TopologySpreadConstraint whenUnsatisfiable(final String whenUnsatisfiable) {
this.whenUnsatisfiable = whenUnsatisfiable;
return this;
}
@Override
public TopologySpreadConstraint validate() {
List __errors_jsonSchema = null;
if (topologyKey == null) {
if (__errors_jsonSchema == null) {
__errors_jsonSchema = new ArrayList<>();
}
__errors_jsonSchema.add(new ValidationException.ValidationError(
"topologyKey", "topologyKey",
"Missing 'topologyKey' attribute.", true));
}
if (whenUnsatisfiable == null) {
if (__errors_jsonSchema == null) {
__errors_jsonSchema = new ArrayList<>();
}
__errors_jsonSchema.add(new ValidationException.ValidationError(
"whenUnsatisfiable", "whenUnsatisfiable",
"Missing 'whenUnsatisfiable' attribute.", true));
}
if (__errors_jsonSchema != null) {
throw new ValidationException(__errors_jsonSchema);
}
return this;
}
@Override
public String asJson() {
return Stream.of(
(labelSelector != null ? "\"labelSelector\":" + labelSelector.asJson() : ""),
"\"maxSkew\":" + maxSkew,
(topologyKey != null ? "\"topologyKey\":\"" + JsonStrings.escapeJson(topologyKey) + "\"" : ""),
(whenUnsatisfiable != null ? "\"whenUnsatisfiable\":\"" + JsonStrings.escapeJson(whenUnsatisfiable) + "\"" : ""))
.filter(__it -> !__it.isBlank())
.collect(joining(",", "{", "}"));
}
}