io.yupiik.kubernetes.bindings.v1_23_5.v1.LoadBalancerIngress 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.List;
import java.util.Objects;
import java.util.stream.Stream;
import static java.util.stream.Collectors.joining;
public class LoadBalancerIngress implements Validable, Exportable {
private String hostname;
private String ip;
private List ports;
public LoadBalancerIngress() {
// no-op
}
public LoadBalancerIngress(final String hostname,
final String ip,
final List ports) {
this.hostname = hostname;
this.ip = ip;
this.ports = ports;
}
public String getHostname() {
return hostname;
}
public void setHostname(final String hostname) {
this.hostname = hostname;
}
public String getIp() {
return ip;
}
public void setIp(final String ip) {
this.ip = ip;
}
public List getPorts() {
return ports;
}
public void setPorts(final List ports) {
this.ports = ports;
}
@Override
public int hashCode() {
return Objects.hash(
hostname,
ip,
ports);
}
@Override
public boolean equals(final Object __other) {
if (!(__other instanceof LoadBalancerIngress)) {
return false;
}
final LoadBalancerIngress __otherCasted = (LoadBalancerIngress) __other;
return Objects.equals(hostname, __otherCasted.hostname) &&
Objects.equals(ip, __otherCasted.ip) &&
Objects.equals(ports, __otherCasted.ports);
}
public LoadBalancerIngress hostname(final String hostname) {
this.hostname = hostname;
return this;
}
public LoadBalancerIngress ip(final String ip) {
this.ip = ip;
return this;
}
public LoadBalancerIngress ports(final List ports) {
this.ports = ports;
return this;
}
@Override
public LoadBalancerIngress validate() {
return this;
}
@Override
public String asJson() {
return Stream.of(
(hostname != null ? "\"hostname\":\"" + JsonStrings.escapeJson(hostname) + "\"" : ""),
(ip != null ? "\"ip\":\"" + JsonStrings.escapeJson(ip) + "\"" : ""),
(ports != null ? "\"ports\":" + ports.stream().map(__it -> __it == null ? "null" : __it.asJson()).collect(joining(",", "[", "]")) : ""))
.filter(__it -> !__it.isBlank())
.collect(joining(",", "{", "}"));
}
}