
io.kubernetes.client.models.ExtensionsV1beta1AllowedFlexVolumeFluentImpl Maven / Gradle / Ivy
package io.kubernetes.client.models;
import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.lang.Boolean;
public class ExtensionsV1beta1AllowedFlexVolumeFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements ExtensionsV1beta1AllowedFlexVolumeFluent{
private String driver;
public ExtensionsV1beta1AllowedFlexVolumeFluentImpl(){
}
public ExtensionsV1beta1AllowedFlexVolumeFluentImpl(ExtensionsV1beta1AllowedFlexVolume instance){
this.withDriver(instance.getDriver());
}
public String getDriver(){
return this.driver;
}
public A withDriver(String driver){
this.driver=driver; return (A) this;
}
public Boolean hasDriver(){
return this.driver != 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;
ExtensionsV1beta1AllowedFlexVolumeFluentImpl that = (ExtensionsV1beta1AllowedFlexVolumeFluentImpl) o;
if (driver != null ? !driver.equals(that.driver) :that.driver != null) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy