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

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

package io.kubernetes.client.models;

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

public class V1AzureDiskVolumeSourceBuilder extends V1AzureDiskVolumeSourceFluentImpl implements VisitableBuilder{

    V1AzureDiskVolumeSourceFluent fluent;
    Boolean validationEnabled;

    public V1AzureDiskVolumeSourceBuilder(){
            this(true);
    }
    public V1AzureDiskVolumeSourceBuilder(Boolean validationEnabled){
            this(new V1AzureDiskVolumeSource(), validationEnabled);
    }
    public V1AzureDiskVolumeSourceBuilder(V1AzureDiskVolumeSourceFluent fluent){
            this(fluent, true);
    }
    public V1AzureDiskVolumeSourceBuilder(V1AzureDiskVolumeSourceFluent fluent,Boolean validationEnabled){
            this(fluent, new V1AzureDiskVolumeSource(), validationEnabled);
    }
    public V1AzureDiskVolumeSourceBuilder(V1AzureDiskVolumeSourceFluent fluent,V1AzureDiskVolumeSource instance){
            this(fluent, instance, true);
    }
    public V1AzureDiskVolumeSourceBuilder(V1AzureDiskVolumeSourceFluent fluent,V1AzureDiskVolumeSource instance,Boolean validationEnabled){
            this.fluent = fluent; 
            fluent.withCachingMode(instance.getCachingMode());

            fluent.withDiskName(instance.getDiskName());

            fluent.withDiskURI(instance.getDiskURI());

            fluent.withFsType(instance.getFsType());

            fluent.withKind(instance.getKind());

            fluent.withReadOnly(instance.isReadOnly());

            this.validationEnabled = validationEnabled; 
    }
    public V1AzureDiskVolumeSourceBuilder(V1AzureDiskVolumeSource instance){
            this(instance,true);
    }
    public V1AzureDiskVolumeSourceBuilder(V1AzureDiskVolumeSource instance,Boolean validationEnabled){
            this.fluent = this; 
            this.withCachingMode(instance.getCachingMode());

            this.withDiskName(instance.getDiskName());

            this.withDiskURI(instance.getDiskURI());

            this.withFsType(instance.getFsType());

            this.withKind(instance.getKind());

            this.withReadOnly(instance.isReadOnly());

            this.validationEnabled = validationEnabled; 
    }

    public V1AzureDiskVolumeSource build(){
            V1AzureDiskVolumeSource buildable = new V1AzureDiskVolumeSource();
            buildable.setCachingMode(fluent.getCachingMode());
            buildable.setDiskName(fluent.getDiskName());
            buildable.setDiskURI(fluent.getDiskURI());
            buildable.setFsType(fluent.getFsType());
            buildable.setKind(fluent.getKind());
            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;
            V1AzureDiskVolumeSourceBuilder that = (V1AzureDiskVolumeSourceBuilder) 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