io.yupiik.kubernetes.bindings.v1_22_9.v1.VolumeAttachmentSpec 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_9.v1;
import io.yupiik.kubernetes.bindings.v1_22_9.Exportable;
import io.yupiik.kubernetes.bindings.v1_22_9.JsonStrings;
import io.yupiik.kubernetes.bindings.v1_22_9.Validable;
import io.yupiik.kubernetes.bindings.v1_22_9.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 VolumeAttachmentSpec implements Validable, Exportable {
private String attacher;
private String nodeName;
private VolumeAttachmentSource source;
public VolumeAttachmentSpec() {
// no-op
}
public VolumeAttachmentSpec(final String attacher,
final String nodeName,
final VolumeAttachmentSource source) {
this.attacher = attacher;
this.nodeName = nodeName;
this.source = source;
}
public String getAttacher() {
return attacher;
}
public void setAttacher(final String attacher) {
this.attacher = attacher;
}
public String getNodeName() {
return nodeName;
}
public void setNodeName(final String nodeName) {
this.nodeName = nodeName;
}
public VolumeAttachmentSource getSource() {
return source;
}
public void setSource(final VolumeAttachmentSource source) {
this.source = source;
}
@Override
public int hashCode() {
return Objects.hash(
attacher,
nodeName,
source);
}
@Override
public boolean equals(final Object __other) {
if (!(__other instanceof VolumeAttachmentSpec)) {
return false;
}
final VolumeAttachmentSpec __otherCasted = (VolumeAttachmentSpec) __other;
return Objects.equals(attacher, __otherCasted.attacher) &&
Objects.equals(nodeName, __otherCasted.nodeName) &&
Objects.equals(source, __otherCasted.source);
}
public VolumeAttachmentSpec attacher(final String attacher) {
this.attacher = attacher;
return this;
}
public VolumeAttachmentSpec nodeName(final String nodeName) {
this.nodeName = nodeName;
return this;
}
public VolumeAttachmentSpec source(final VolumeAttachmentSource source) {
this.source = source;
return this;
}
@Override
public VolumeAttachmentSpec validate() {
List __errors_jsonSchema = null;
if (attacher == null) {
if (__errors_jsonSchema == null) {
__errors_jsonSchema = new ArrayList<>();
}
__errors_jsonSchema.add(new ValidationException.ValidationError(
"attacher", "attacher",
"Missing 'attacher' attribute.", true));
}
if (nodeName == null) {
if (__errors_jsonSchema == null) {
__errors_jsonSchema = new ArrayList<>();
}
__errors_jsonSchema.add(new ValidationException.ValidationError(
"nodeName", "nodeName",
"Missing 'nodeName' attribute.", true));
}
if (source == null) {
if (__errors_jsonSchema == null) {
__errors_jsonSchema = new ArrayList<>();
}
__errors_jsonSchema.add(new ValidationException.ValidationError(
"source", "source",
"Missing 'source' attribute.", true));
}
if (__errors_jsonSchema != null) {
throw new ValidationException(__errors_jsonSchema);
}
return this;
}
@Override
public String asJson() {
return Stream.of(
(attacher != null ? "\"attacher\":\"" + JsonStrings.escapeJson(attacher) + "\"" : ""),
(nodeName != null ? "\"nodeName\":\"" + JsonStrings.escapeJson(nodeName) + "\"" : ""),
(source != null ? "\"source\":" + source.asJson() : ""))
.filter(__it -> !__it.isBlank())
.collect(joining(",", "{", "}"));
}
}