io.yupiik.kubernetes.bindings.v1_23_5.v1.CSIDriverSpec 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 CSIDriverSpec implements Validable, Exportable {
private Boolean attachRequired;
private String fsGroupPolicy;
private Boolean podInfoOnMount;
private Boolean requiresRepublish;
private Boolean storageCapacity;
private List tokenRequests;
private List volumeLifecycleModes;
public CSIDriverSpec() {
// no-op
}
public CSIDriverSpec(final Boolean attachRequired,
final String fsGroupPolicy,
final Boolean podInfoOnMount,
final Boolean requiresRepublish,
final Boolean storageCapacity,
final List tokenRequests,
final List volumeLifecycleModes) {
this.attachRequired = attachRequired;
this.fsGroupPolicy = fsGroupPolicy;
this.podInfoOnMount = podInfoOnMount;
this.requiresRepublish = requiresRepublish;
this.storageCapacity = storageCapacity;
this.tokenRequests = tokenRequests;
this.volumeLifecycleModes = volumeLifecycleModes;
}
public Boolean getAttachRequired() {
return attachRequired;
}
public void setAttachRequired(final Boolean attachRequired) {
this.attachRequired = attachRequired;
}
public String getFsGroupPolicy() {
return fsGroupPolicy;
}
public void setFsGroupPolicy(final String fsGroupPolicy) {
this.fsGroupPolicy = fsGroupPolicy;
}
public Boolean getPodInfoOnMount() {
return podInfoOnMount;
}
public void setPodInfoOnMount(final Boolean podInfoOnMount) {
this.podInfoOnMount = podInfoOnMount;
}
public Boolean getRequiresRepublish() {
return requiresRepublish;
}
public void setRequiresRepublish(final Boolean requiresRepublish) {
this.requiresRepublish = requiresRepublish;
}
public Boolean getStorageCapacity() {
return storageCapacity;
}
public void setStorageCapacity(final Boolean storageCapacity) {
this.storageCapacity = storageCapacity;
}
public List getTokenRequests() {
return tokenRequests;
}
public void setTokenRequests(final List tokenRequests) {
this.tokenRequests = tokenRequests;
}
public List getVolumeLifecycleModes() {
return volumeLifecycleModes;
}
public void setVolumeLifecycleModes(final List volumeLifecycleModes) {
this.volumeLifecycleModes = volumeLifecycleModes;
}
@Override
public int hashCode() {
return Objects.hash(
attachRequired,
fsGroupPolicy,
podInfoOnMount,
requiresRepublish,
storageCapacity,
tokenRequests,
volumeLifecycleModes);
}
@Override
public boolean equals(final Object __other) {
if (!(__other instanceof CSIDriverSpec)) {
return false;
}
final CSIDriverSpec __otherCasted = (CSIDriverSpec) __other;
return Objects.equals(attachRequired, __otherCasted.attachRequired) &&
Objects.equals(fsGroupPolicy, __otherCasted.fsGroupPolicy) &&
Objects.equals(podInfoOnMount, __otherCasted.podInfoOnMount) &&
Objects.equals(requiresRepublish, __otherCasted.requiresRepublish) &&
Objects.equals(storageCapacity, __otherCasted.storageCapacity) &&
Objects.equals(tokenRequests, __otherCasted.tokenRequests) &&
Objects.equals(volumeLifecycleModes, __otherCasted.volumeLifecycleModes);
}
public CSIDriverSpec attachRequired(final Boolean attachRequired) {
this.attachRequired = attachRequired;
return this;
}
public CSIDriverSpec fsGroupPolicy(final String fsGroupPolicy) {
this.fsGroupPolicy = fsGroupPolicy;
return this;
}
public CSIDriverSpec podInfoOnMount(final Boolean podInfoOnMount) {
this.podInfoOnMount = podInfoOnMount;
return this;
}
public CSIDriverSpec requiresRepublish(final Boolean requiresRepublish) {
this.requiresRepublish = requiresRepublish;
return this;
}
public CSIDriverSpec storageCapacity(final Boolean storageCapacity) {
this.storageCapacity = storageCapacity;
return this;
}
public CSIDriverSpec tokenRequests(final List tokenRequests) {
this.tokenRequests = tokenRequests;
return this;
}
public CSIDriverSpec volumeLifecycleModes(final List volumeLifecycleModes) {
this.volumeLifecycleModes = volumeLifecycleModes;
return this;
}
@Override
public CSIDriverSpec validate() {
return this;
}
@Override
public String asJson() {
return Stream.of(
(attachRequired != null ? "\"attachRequired\":" + attachRequired : ""),
(fsGroupPolicy != null ? "\"fsGroupPolicy\":\"" + JsonStrings.escapeJson(fsGroupPolicy) + "\"" : ""),
(podInfoOnMount != null ? "\"podInfoOnMount\":" + podInfoOnMount : ""),
(requiresRepublish != null ? "\"requiresRepublish\":" + requiresRepublish : ""),
(storageCapacity != null ? "\"storageCapacity\":" + storageCapacity : ""),
(tokenRequests != null ? "\"tokenRequests\":" + tokenRequests.stream().map(__it -> __it == null ? "null" : __it.asJson()).collect(joining(",", "[", "]")) : ""),
(volumeLifecycleModes != null ? "\"volumeLifecycleModes\":" + volumeLifecycleModes.stream().map(__it -> __it == null ? "null" : ("\"" + JsonStrings.escapeJson(__it) + "\"")).collect(joining(",", "[", "]")) : ""))
.filter(__it -> !__it.isBlank())
.collect(joining(",", "{", "}"));
}
}