
io.kubernetes.client.models.V1ISCSIVolumeSourceBuilder Maven / Gradle / Ivy
package io.kubernetes.client.models;
import io.kubernetes.client.fluent.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;
public class V1ISCSIVolumeSourceBuilder extends V1ISCSIVolumeSourceFluentImpl implements VisitableBuilder{
V1ISCSIVolumeSourceFluent> fluent;
Boolean validationEnabled;
public V1ISCSIVolumeSourceBuilder(){
this(true);
}
public V1ISCSIVolumeSourceBuilder(Boolean validationEnabled){
this(new V1ISCSIVolumeSource(), validationEnabled);
}
public V1ISCSIVolumeSourceBuilder(V1ISCSIVolumeSourceFluent> fluent){
this(fluent, true);
}
public V1ISCSIVolumeSourceBuilder(V1ISCSIVolumeSourceFluent> fluent,Boolean validationEnabled){
this(fluent, new V1ISCSIVolumeSource(), validationEnabled);
}
public V1ISCSIVolumeSourceBuilder(V1ISCSIVolumeSourceFluent> fluent,V1ISCSIVolumeSource instance){
this(fluent, instance, true);
}
public V1ISCSIVolumeSourceBuilder(V1ISCSIVolumeSourceFluent> fluent,V1ISCSIVolumeSource instance,Boolean validationEnabled){
this.fluent = fluent;
fluent.withChapAuthDiscovery(instance.isChapAuthDiscovery());
fluent.withChapAuthSession(instance.isChapAuthSession());
fluent.withFsType(instance.getFsType());
fluent.withInitiatorName(instance.getInitiatorName());
fluent.withIqn(instance.getIqn());
fluent.withIscsiInterface(instance.getIscsiInterface());
fluent.withLun(instance.getLun());
fluent.withPortals(instance.getPortals());
fluent.withReadOnly(instance.isReadOnly());
fluent.withSecretRef(instance.getSecretRef());
fluent.withTargetPortal(instance.getTargetPortal());
this.validationEnabled = validationEnabled;
}
public V1ISCSIVolumeSourceBuilder(V1ISCSIVolumeSource instance){
this(instance,true);
}
public V1ISCSIVolumeSourceBuilder(V1ISCSIVolumeSource instance,Boolean validationEnabled){
this.fluent = this;
this.withChapAuthDiscovery(instance.isChapAuthDiscovery());
this.withChapAuthSession(instance.isChapAuthSession());
this.withFsType(instance.getFsType());
this.withInitiatorName(instance.getInitiatorName());
this.withIqn(instance.getIqn());
this.withIscsiInterface(instance.getIscsiInterface());
this.withLun(instance.getLun());
this.withPortals(instance.getPortals());
this.withReadOnly(instance.isReadOnly());
this.withSecretRef(instance.getSecretRef());
this.withTargetPortal(instance.getTargetPortal());
this.validationEnabled = validationEnabled;
}
public V1ISCSIVolumeSource build(){
V1ISCSIVolumeSource buildable = new V1ISCSIVolumeSource();
buildable.setChapAuthDiscovery(fluent.isChapAuthDiscovery());
buildable.setChapAuthSession(fluent.isChapAuthSession());
buildable.setFsType(fluent.getFsType());
buildable.setInitiatorName(fluent.getInitiatorName());
buildable.setIqn(fluent.getIqn());
buildable.setIscsiInterface(fluent.getIscsiInterface());
buildable.setLun(fluent.getLun());
buildable.setPortals(fluent.getPortals());
buildable.setReadOnly(fluent.isReadOnly());
buildable.setSecretRef(fluent.getSecretRef());
buildable.setTargetPortal(fluent.getTargetPortal());
return buildable;
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
V1ISCSIVolumeSourceBuilder that = (V1ISCSIVolumeSourceBuilder) o;
if (fluent != null &&fluent != this ? !fluent.equals(that.fluent) :that.fluent != null &&fluent != this ) return false;
if (validationEnabled != null ? !validationEnabled.equals(that.validationEnabled) :that.validationEnabled != null) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy