
io.kubernetes.client.models.V1CinderVolumeSourceFluentImpl Maven / Gradle / Ivy
package io.kubernetes.client.models;
import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.Nested;
import java.lang.String;
import java.lang.Deprecated;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;
public class V1CinderVolumeSourceFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1CinderVolumeSourceFluent{
private String fsType;
private Boolean readOnly;
private V1LocalObjectReferenceBuilder secretRef;
private String volumeID;
public V1CinderVolumeSourceFluentImpl(){
}
public V1CinderVolumeSourceFluentImpl(V1CinderVolumeSource instance){
this.withFsType(instance.getFsType());
this.withReadOnly(instance.isReadOnly());
this.withSecretRef(instance.getSecretRef());
this.withVolumeID(instance.getVolumeID());
}
public String getFsType(){
return this.fsType;
}
public A withFsType(String fsType){
this.fsType=fsType; return (A) this;
}
public Boolean hasFsType(){
return this.fsType != null;
}
public Boolean isReadOnly(){
return this.readOnly;
}
public A withReadOnly(Boolean readOnly){
this.readOnly=readOnly; return (A) this;
}
public Boolean hasReadOnly(){
return this.readOnly != null;
}
public A withNewReadOnly(boolean arg1){
return (A)withReadOnly(new Boolean(arg1));
}
public A withNewReadOnly(String arg1){
return (A)withReadOnly(new Boolean(arg1));
}
/**
* This method has been deprecated, please use method buildSecretRef instead.
*/
@Deprecated public V1LocalObjectReference getSecretRef(){
return this.secretRef!=null?this.secretRef.build():null;
}
public V1LocalObjectReference buildSecretRef(){
return this.secretRef!=null?this.secretRef.build():null;
}
public A withSecretRef(V1LocalObjectReference secretRef){
_visitables.remove(this.secretRef);
if (secretRef!=null){ this.secretRef= new V1LocalObjectReferenceBuilder(secretRef); _visitables.add(this.secretRef);} return (A) this;
}
public Boolean hasSecretRef(){
return this.secretRef != null;
}
public V1CinderVolumeSourceFluent.SecretRefNested withNewSecretRef(){
return new SecretRefNestedImpl();
}
public V1CinderVolumeSourceFluent.SecretRefNested withNewSecretRefLike(V1LocalObjectReference item){
return new SecretRefNestedImpl(item);
}
public V1CinderVolumeSourceFluent.SecretRefNested editSecretRef(){
return withNewSecretRefLike(getSecretRef());
}
public V1CinderVolumeSourceFluent.SecretRefNested editOrNewSecretRef(){
return withNewSecretRefLike(getSecretRef() != null ? getSecretRef(): new V1LocalObjectReferenceBuilder().build());
}
public V1CinderVolumeSourceFluent.SecretRefNested editOrNewSecretRefLike(V1LocalObjectReference item){
return withNewSecretRefLike(getSecretRef() != null ? getSecretRef(): item);
}
public String getVolumeID(){
return this.volumeID;
}
public A withVolumeID(String volumeID){
this.volumeID=volumeID; return (A) this;
}
public Boolean hasVolumeID(){
return this.volumeID != null;
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
V1CinderVolumeSourceFluentImpl that = (V1CinderVolumeSourceFluentImpl) o;
if (fsType != null ? !fsType.equals(that.fsType) :that.fsType != null) return false;
if (readOnly != null ? !readOnly.equals(that.readOnly) :that.readOnly != null) return false;
if (secretRef != null ? !secretRef.equals(that.secretRef) :that.secretRef != null) return false;
if (volumeID != null ? !volumeID.equals(that.volumeID) :that.volumeID != null) return false;
return true;
}
public class SecretRefNestedImpl extends V1LocalObjectReferenceFluentImpl> implements V1CinderVolumeSourceFluent.SecretRefNested,io.kubernetes.client.fluent.Nested{
private final V1LocalObjectReferenceBuilder builder;
SecretRefNestedImpl(V1LocalObjectReference item){
this.builder = new V1LocalObjectReferenceBuilder(this, item);
}
SecretRefNestedImpl(){
this.builder = new V1LocalObjectReferenceBuilder(this);
}
public N and(){
return (N) V1CinderVolumeSourceFluentImpl.this.withSecretRef(builder.build());
}
public N endSecretRef(){
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy