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

io.kubernetes.client.models.V1GCEPersistentDiskVolumeSourceBuilder Maven / Gradle / Ivy

package io.kubernetes.client.models;

import io.kubernetes.client.fluent.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;

public class V1GCEPersistentDiskVolumeSourceBuilder extends V1GCEPersistentDiskVolumeSourceFluentImpl implements VisitableBuilder{

    V1GCEPersistentDiskVolumeSourceFluent fluent;
    Boolean validationEnabled;

    public V1GCEPersistentDiskVolumeSourceBuilder(){
            this(true);
    }
    public V1GCEPersistentDiskVolumeSourceBuilder(Boolean validationEnabled){
            this(new V1GCEPersistentDiskVolumeSource(), validationEnabled);
    }
    public V1GCEPersistentDiskVolumeSourceBuilder(V1GCEPersistentDiskVolumeSourceFluent fluent){
            this(fluent, true);
    }
    public V1GCEPersistentDiskVolumeSourceBuilder(V1GCEPersistentDiskVolumeSourceFluent fluent,Boolean validationEnabled){
            this(fluent, new V1GCEPersistentDiskVolumeSource(), validationEnabled);
    }
    public V1GCEPersistentDiskVolumeSourceBuilder(V1GCEPersistentDiskVolumeSourceFluent fluent,V1GCEPersistentDiskVolumeSource instance){
            this(fluent, instance, true);
    }
    public V1GCEPersistentDiskVolumeSourceBuilder(V1GCEPersistentDiskVolumeSourceFluent fluent,V1GCEPersistentDiskVolumeSource instance,Boolean validationEnabled){
            this.fluent = fluent; 
            fluent.withFsType(instance.getFsType());

            fluent.withPartition(instance.getPartition());

            fluent.withPdName(instance.getPdName());

            fluent.withReadOnly(instance.isReadOnly());

            this.validationEnabled = validationEnabled; 
    }
    public V1GCEPersistentDiskVolumeSourceBuilder(V1GCEPersistentDiskVolumeSource instance){
            this(instance,true);
    }
    public V1GCEPersistentDiskVolumeSourceBuilder(V1GCEPersistentDiskVolumeSource instance,Boolean validationEnabled){
            this.fluent = this; 
            this.withFsType(instance.getFsType());

            this.withPartition(instance.getPartition());

            this.withPdName(instance.getPdName());

            this.withReadOnly(instance.isReadOnly());

            this.validationEnabled = validationEnabled; 
    }

    public V1GCEPersistentDiskVolumeSource build(){
            V1GCEPersistentDiskVolumeSource buildable = new V1GCEPersistentDiskVolumeSource();
            buildable.setFsType(fluent.getFsType());
            buildable.setPartition(fluent.getPartition());
            buildable.setPdName(fluent.getPdName());
            buildable.setReadOnly(fluent.isReadOnly());
            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;
            V1GCEPersistentDiskVolumeSourceBuilder that = (V1GCEPersistentDiskVolumeSourceBuilder) 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