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

io.fabric8.kubernetes.api.model.policy.v1beta1.AllowedFlexVolumeBuilder Maven / Gradle / Ivy

package io.fabric8.kubernetes.api.model.policy.v1beta1;

import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;
public class AllowedFlexVolumeBuilder extends io.fabric8.kubernetes.api.model.policy.v1beta1.AllowedFlexVolumeFluentImpl implements io.fabric8.kubernetes.api.builder.VisitableBuilder{
  public AllowedFlexVolumeBuilder() {
    this(false);
  }
  public AllowedFlexVolumeBuilder(java.lang.Boolean validationEnabled) {
    this(new AllowedFlexVolume(), validationEnabled);
  }
  public AllowedFlexVolumeBuilder(io.fabric8.kubernetes.api.model.policy.v1beta1.AllowedFlexVolumeFluent fluent) {
    this(fluent, false);
  }
  public AllowedFlexVolumeBuilder(io.fabric8.kubernetes.api.model.policy.v1beta1.AllowedFlexVolumeFluent fluent,java.lang.Boolean validationEnabled) {
    this(fluent, new AllowedFlexVolume(), validationEnabled);
  }
  public AllowedFlexVolumeBuilder(io.fabric8.kubernetes.api.model.policy.v1beta1.AllowedFlexVolumeFluent fluent,io.fabric8.kubernetes.api.model.policy.v1beta1.AllowedFlexVolume instance) {
    this(fluent, instance, false);
  }
  public AllowedFlexVolumeBuilder(io.fabric8.kubernetes.api.model.policy.v1beta1.AllowedFlexVolumeFluent fluent,io.fabric8.kubernetes.api.model.policy.v1beta1.AllowedFlexVolume instance,java.lang.Boolean validationEnabled) {
    this.fluent = fluent; 
    fluent.withDriver(instance.getDriver()); 
    fluent.withAdditionalProperties(instance.getAdditionalProperties());

    this.validationEnabled = validationEnabled; 
  }
  public AllowedFlexVolumeBuilder(io.fabric8.kubernetes.api.model.policy.v1beta1.AllowedFlexVolume instance) {
    this(instance,false);
  }
  public AllowedFlexVolumeBuilder(io.fabric8.kubernetes.api.model.policy.v1beta1.AllowedFlexVolume instance,java.lang.Boolean validationEnabled) {
    this.fluent = this; 
    this.withDriver(instance.getDriver()); 
    this.withAdditionalProperties(instance.getAdditionalProperties());

    this.validationEnabled = validationEnabled; 
  }
  io.fabric8.kubernetes.api.model.policy.v1beta1.AllowedFlexVolumeFluent fluent;
  java.lang.Boolean validationEnabled;
  public io.fabric8.kubernetes.api.model.policy.v1beta1.AllowedFlexVolume build() {
    AllowedFlexVolume buildable = new AllowedFlexVolume(fluent.getDriver());
    buildable.setAdditionalProperties(fluent.getAdditionalProperties());
    return buildable;
  }
  public boolean equals(java.lang.Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    if (!super.equals(o)) return false;
    AllowedFlexVolumeBuilder that = (AllowedFlexVolumeBuilder) 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 - 2025 Weber Informatics LLC | Privacy Policy