All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.kubernetes.client.openapi.models.V1ScaleIOPersistentVolumeSourceFluentImpl Maven / Gradle / Ivy

There is a newer version: 22.0.0
Show newest version
package io.kubernetes.client.openapi.models;

import java.lang.StringBuilder;
import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.Nested;
import java.lang.String;
import java.lang.StringBuffer;
import java.lang.Deprecated;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;

public class V1ScaleIOPersistentVolumeSourceFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1ScaleIOPersistentVolumeSourceFluent {

    private String fsType;
    private String gateway;
    private String protectionDomain;
    private Boolean readOnly;
    private V1SecretReferenceBuilder secretRef;
    private Boolean sslEnabled;
    private String storageMode;
    private String storagePool;
    private String system;
    private String volumeName;

    public V1ScaleIOPersistentVolumeSourceFluentImpl() { 
    }


    public V1ScaleIOPersistentVolumeSourceFluentImpl(V1ScaleIOPersistentVolumeSource instance) { 
        this.withFsType(instance.getFsType());

        this.withGateway(instance.getGateway());

        this.withProtectionDomain(instance.getProtectionDomain());

        this.withReadOnly(instance.getReadOnly());

        this.withSecretRef(instance.getSecretRef());

        this.withSslEnabled(instance.getSslEnabled());

        this.withStorageMode(instance.getStorageMode());

        this.withStoragePool(instance.getStoragePool());

        this.withSystem(instance.getSystem());

        this.withVolumeName(instance.getVolumeName());

    }


    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 A withNewFsType(String arg1) {
        return (A)withFsType(new String(arg1));
    }

    public A withNewFsType(StringBuilder arg1) {
        return (A)withFsType(new String(arg1));
    }

    public A withNewFsType(StringBuffer arg1) {
        return (A)withFsType(new String(arg1));
    }

    public String getGateway() {
        return this.gateway;
    }

    public A withGateway(String gateway) {
        this.gateway=gateway; return (A) this;
    }

    public Boolean hasGateway() {
        return this.gateway != null;
    }

    public A withNewGateway(String arg1) {
        return (A)withGateway(new String(arg1));
    }

    public A withNewGateway(StringBuilder arg1) {
        return (A)withGateway(new String(arg1));
    }

    public A withNewGateway(StringBuffer arg1) {
        return (A)withGateway(new String(arg1));
    }

    public String getProtectionDomain() {
        return this.protectionDomain;
    }

    public A withProtectionDomain(String protectionDomain) {
        this.protectionDomain=protectionDomain; return (A) this;
    }

    public Boolean hasProtectionDomain() {
        return this.protectionDomain != null;
    }

    public A withNewProtectionDomain(String arg1) {
        return (A)withProtectionDomain(new String(arg1));
    }

    public A withNewProtectionDomain(StringBuilder arg1) {
        return (A)withProtectionDomain(new String(arg1));
    }

    public A withNewProtectionDomain(StringBuffer arg1) {
        return (A)withProtectionDomain(new String(arg1));
    }

    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(String arg1) {
        return (A)withReadOnly(new Boolean(arg1));
    }

    public A withNewReadOnly(boolean arg1) {
        return (A)withReadOnly(new Boolean(arg1));
    }

    
/**
 * This method has been deprecated, please use method buildSecretRef instead.
 * @return The buildable object.
 */
@Deprecated public V1SecretReference getSecretRef() {
        return this.secretRef!=null?this.secretRef.build():null;
    }

    public V1SecretReference buildSecretRef() {
        return this.secretRef!=null?this.secretRef.build():null;
    }

    public A withSecretRef(V1SecretReference secretRef) {
        _visitables.get("secretRef").remove(this.secretRef);
        if (secretRef!=null){ this.secretRef= new V1SecretReferenceBuilder(secretRef); _visitables.get("secretRef").add(this.secretRef);} return (A) this;
    }

    public Boolean hasSecretRef() {
        return this.secretRef != null;
    }

    public V1ScaleIOPersistentVolumeSourceFluent.SecretRefNested withNewSecretRef() {
        return new SecretRefNestedImpl();
    }

    public V1ScaleIOPersistentVolumeSourceFluent.SecretRefNested withNewSecretRefLike(V1SecretReference item) {
        return new SecretRefNestedImpl(item);
    }

    public V1ScaleIOPersistentVolumeSourceFluent.SecretRefNested editSecretRef() {
        return withNewSecretRefLike(getSecretRef());
    }

    public V1ScaleIOPersistentVolumeSourceFluent.SecretRefNested editOrNewSecretRef() {
        return withNewSecretRefLike(getSecretRef() != null ? getSecretRef(): new V1SecretReferenceBuilder().build());
    }

    public V1ScaleIOPersistentVolumeSourceFluent.SecretRefNested editOrNewSecretRefLike(V1SecretReference item) {
        return withNewSecretRefLike(getSecretRef() != null ? getSecretRef(): item);
    }

    public Boolean isSslEnabled() {
        return this.sslEnabled;
    }

    public A withSslEnabled(Boolean sslEnabled) {
        this.sslEnabled=sslEnabled; return (A) this;
    }

    public Boolean hasSslEnabled() {
        return this.sslEnabled != null;
    }

    public A withNewSslEnabled(String arg1) {
        return (A)withSslEnabled(new Boolean(arg1));
    }

    public A withNewSslEnabled(boolean arg1) {
        return (A)withSslEnabled(new Boolean(arg1));
    }

    public String getStorageMode() {
        return this.storageMode;
    }

    public A withStorageMode(String storageMode) {
        this.storageMode=storageMode; return (A) this;
    }

    public Boolean hasStorageMode() {
        return this.storageMode != null;
    }

    public A withNewStorageMode(String arg1) {
        return (A)withStorageMode(new String(arg1));
    }

    public A withNewStorageMode(StringBuilder arg1) {
        return (A)withStorageMode(new String(arg1));
    }

    public A withNewStorageMode(StringBuffer arg1) {
        return (A)withStorageMode(new String(arg1));
    }

    public String getStoragePool() {
        return this.storagePool;
    }

    public A withStoragePool(String storagePool) {
        this.storagePool=storagePool; return (A) this;
    }

    public Boolean hasStoragePool() {
        return this.storagePool != null;
    }

    public A withNewStoragePool(String arg1) {
        return (A)withStoragePool(new String(arg1));
    }

    public A withNewStoragePool(StringBuilder arg1) {
        return (A)withStoragePool(new String(arg1));
    }

    public A withNewStoragePool(StringBuffer arg1) {
        return (A)withStoragePool(new String(arg1));
    }

    public String getSystem() {
        return this.system;
    }

    public A withSystem(String system) {
        this.system=system; return (A) this;
    }

    public Boolean hasSystem() {
        return this.system != null;
    }

    public A withNewSystem(String arg1) {
        return (A)withSystem(new String(arg1));
    }

    public A withNewSystem(StringBuilder arg1) {
        return (A)withSystem(new String(arg1));
    }

    public A withNewSystem(StringBuffer arg1) {
        return (A)withSystem(new String(arg1));
    }

    public String getVolumeName() {
        return this.volumeName;
    }

    public A withVolumeName(String volumeName) {
        this.volumeName=volumeName; return (A) this;
    }

    public Boolean hasVolumeName() {
        return this.volumeName != null;
    }

    public A withNewVolumeName(String arg1) {
        return (A)withVolumeName(new String(arg1));
    }

    public A withNewVolumeName(StringBuilder arg1) {
        return (A)withVolumeName(new String(arg1));
    }

    public A withNewVolumeName(StringBuffer arg1) {
        return (A)withVolumeName(new String(arg1));
    }

    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        V1ScaleIOPersistentVolumeSourceFluentImpl that = (V1ScaleIOPersistentVolumeSourceFluentImpl) o;
        if (fsType != null ? !fsType.equals(that.fsType) :that.fsType != null) return false;
        if (gateway != null ? !gateway.equals(that.gateway) :that.gateway != null) return false;
        if (protectionDomain != null ? !protectionDomain.equals(that.protectionDomain) :that.protectionDomain != 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 (sslEnabled != null ? !sslEnabled.equals(that.sslEnabled) :that.sslEnabled != null) return false;
        if (storageMode != null ? !storageMode.equals(that.storageMode) :that.storageMode != null) return false;
        if (storagePool != null ? !storagePool.equals(that.storagePool) :that.storagePool != null) return false;
        if (system != null ? !system.equals(that.system) :that.system != null) return false;
        if (volumeName != null ? !volumeName.equals(that.volumeName) :that.volumeName != null) return false;
        return true;
    }

    public int hashCode() {
        return java.util.Objects.hash(fsType,  gateway,  protectionDomain,  readOnly,  secretRef,  sslEnabled,  storageMode,  storagePool,  system,  volumeName,  super.hashCode());
    }

    public class SecretRefNestedImpl extends V1SecretReferenceFluentImpl> implements V1ScaleIOPersistentVolumeSourceFluent.SecretRefNested,io.kubernetes.client.fluent.Nested {
        private final V1SecretReferenceBuilder builder;

        SecretRefNestedImpl(V1SecretReference item) {
            this.builder = new V1SecretReferenceBuilder(this, item);
        }

        SecretRefNestedImpl() {
            this.builder = new V1SecretReferenceBuilder(this);
        }

        public N and() {
             return (N) V1ScaleIOPersistentVolumeSourceFluentImpl.this.withSecretRef(builder.build());
        }

        public N endSecretRef() {
             return and();
        }
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy