io.yupiik.kubernetes.bindings.v1_23_5.v1.ReplicationControllerSpec 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_23_5.v1;
import io.yupiik.kubernetes.bindings.v1_23_5.Exportable;
import io.yupiik.kubernetes.bindings.v1_23_5.JsonStrings;
import io.yupiik.kubernetes.bindings.v1_23_5.Validable;
import java.util.Map;
import java.util.Objects;
import java.util.stream.Stream;
import static java.util.stream.Collectors.joining;
public class ReplicationControllerSpec implements Validable, Exportable {
private Integer minReadySeconds;
private Integer replicas;
private Map selector;
private PodTemplateSpec template;
public ReplicationControllerSpec() {
// no-op
}
public ReplicationControllerSpec(final Integer minReadySeconds,
final Integer replicas,
final Map selector,
final PodTemplateSpec template) {
this.minReadySeconds = minReadySeconds;
this.replicas = replicas;
this.selector = selector;
this.template = template;
}
public Integer getMinReadySeconds() {
return minReadySeconds;
}
public void setMinReadySeconds(final Integer minReadySeconds) {
this.minReadySeconds = minReadySeconds;
}
public Integer getReplicas() {
return replicas;
}
public void setReplicas(final Integer replicas) {
this.replicas = replicas;
}
public Map getSelector() {
return selector;
}
public void setSelector(final Map selector) {
this.selector = selector;
}
public PodTemplateSpec getTemplate() {
return template;
}
public void setTemplate(final PodTemplateSpec template) {
this.template = template;
}
@Override
public int hashCode() {
return Objects.hash(
minReadySeconds,
replicas,
selector,
template);
}
@Override
public boolean equals(final Object __other) {
if (!(__other instanceof ReplicationControllerSpec)) {
return false;
}
final ReplicationControllerSpec __otherCasted = (ReplicationControllerSpec) __other;
return Objects.equals(minReadySeconds, __otherCasted.minReadySeconds) &&
Objects.equals(replicas, __otherCasted.replicas) &&
Objects.equals(selector, __otherCasted.selector) &&
Objects.equals(template, __otherCasted.template);
}
public ReplicationControllerSpec minReadySeconds(final Integer minReadySeconds) {
this.minReadySeconds = minReadySeconds;
return this;
}
public ReplicationControllerSpec replicas(final Integer replicas) {
this.replicas = replicas;
return this;
}
public ReplicationControllerSpec selector(final Map selector) {
this.selector = selector;
return this;
}
public ReplicationControllerSpec template(final PodTemplateSpec template) {
this.template = template;
return this;
}
@Override
public ReplicationControllerSpec validate() {
return this;
}
@Override
public String asJson() {
return Stream.of(
(minReadySeconds != null ? "\"minReadySeconds\":" + minReadySeconds : ""),
(replicas != null ? "\"replicas\":" + replicas : ""),
(selector != null ? "\"selector\":" + selector.entrySet().stream()
.map(__it -> "\"" + JsonStrings.escapeJson(__it.getKey()) + "\":" + (__it.getValue() == null ? "null" : ("\"" + JsonStrings.escapeJson(__it.getValue()) + "\"")))
.collect(joining(",", "{", "}")) : ""),
(template != null ? "\"template\":" + template.asJson() : ""))
.filter(__it -> !__it.isBlank())
.collect(joining(",", "{", "}"));
}
}