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

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

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

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

public class V1VsphereVirtualDiskVolumeSourceBuilder extends V1VsphereVirtualDiskVolumeSourceFluentImpl implements VisitableBuilder {

    V1VsphereVirtualDiskVolumeSourceFluent fluent;
    Boolean validationEnabled;

    public V1VsphereVirtualDiskVolumeSourceBuilder() { 
        this(true);
    }


    public V1VsphereVirtualDiskVolumeSourceBuilder(Boolean validationEnabled) { 
        this(new V1VsphereVirtualDiskVolumeSource(), validationEnabled);
    }


    public V1VsphereVirtualDiskVolumeSourceBuilder(V1VsphereVirtualDiskVolumeSourceFluent fluent) { 
        this(fluent, true);
    }


    public V1VsphereVirtualDiskVolumeSourceBuilder(V1VsphereVirtualDiskVolumeSourceFluent fluent,Boolean validationEnabled) { 
        this(fluent, new V1VsphereVirtualDiskVolumeSource(), validationEnabled);
    }


    public V1VsphereVirtualDiskVolumeSourceBuilder(V1VsphereVirtualDiskVolumeSourceFluent fluent,V1VsphereVirtualDiskVolumeSource instance) { 
        this(fluent, instance, true);
    }


    public V1VsphereVirtualDiskVolumeSourceBuilder(V1VsphereVirtualDiskVolumeSourceFluent fluent,V1VsphereVirtualDiskVolumeSource instance,Boolean validationEnabled) { 
        this.fluent = fluent; 
        fluent.withFsType(instance.getFsType());

        fluent.withStoragePolicyID(instance.getStoragePolicyID());

        fluent.withStoragePolicyName(instance.getStoragePolicyName());

        fluent.withVolumePath(instance.getVolumePath());

        this.validationEnabled = validationEnabled; 
    }


    public V1VsphereVirtualDiskVolumeSourceBuilder(V1VsphereVirtualDiskVolumeSource instance) { 
        this(instance,true);
    }


    public V1VsphereVirtualDiskVolumeSourceBuilder(V1VsphereVirtualDiskVolumeSource instance,Boolean validationEnabled) { 
        this.fluent = this; 
        this.withFsType(instance.getFsType());

        this.withStoragePolicyID(instance.getStoragePolicyID());

        this.withStoragePolicyName(instance.getStoragePolicyName());

        this.withVolumePath(instance.getVolumePath());

        this.validationEnabled = validationEnabled; 
    }


    public V1VsphereVirtualDiskVolumeSource build() {
        V1VsphereVirtualDiskVolumeSource buildable = new V1VsphereVirtualDiskVolumeSource();
        buildable.setFsType(fluent.getFsType());
        buildable.setStoragePolicyID(fluent.getStoragePolicyID());
        buildable.setStoragePolicyName(fluent.getStoragePolicyName());
        buildable.setVolumePath(fluent.getVolumePath());
        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;
        V1VsphereVirtualDiskVolumeSourceBuilder that = (V1VsphereVirtualDiskVolumeSourceBuilder) 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;
    }

    public int hashCode() {
        return java.util.Objects.hash(fluent,  validationEnabled,  super.hashCode());
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy