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

io.fabric8.openshift.api.model.miscellaneous.metal3.v1alpha1.HardwareRAIDVolumeBuilder Maven / Gradle / Ivy

There is a newer version: 6.13.4
Show newest version
package io.fabric8.openshift.api.model.miscellaneous.metal3.v1alpha1;

import io.fabric8.kubernetes.api.builder.VisitableBuilder;
public class HardwareRAIDVolumeBuilder extends HardwareRAIDVolumeFluent implements VisitableBuilder{
  public HardwareRAIDVolumeBuilder() {
    this(new HardwareRAIDVolume());
  }
  
  public HardwareRAIDVolumeBuilder(HardwareRAIDVolumeFluent fluent) {
    this(fluent, new HardwareRAIDVolume());
  }
  
  public HardwareRAIDVolumeBuilder(HardwareRAIDVolumeFluent fluent,HardwareRAIDVolume instance) {
    this.fluent = fluent;
    fluent.copyInstance(instance);
  }
  
  public HardwareRAIDVolumeBuilder(HardwareRAIDVolume instance) {
    this.fluent = this;
    this.copyInstance(instance);
  }
  HardwareRAIDVolumeFluent fluent;
  
  public HardwareRAIDVolume build() {
    HardwareRAIDVolume buildable = new HardwareRAIDVolume(fluent.getController(),fluent.getLevel(),fluent.getName(),fluent.getNumberOfPhysicalDisks(),fluent.getPhysicalDisks(),fluent.getRotational(),fluent.getSizeGibibytes());
    buildable.setAdditionalProperties(fluent.getAdditionalProperties());
    return buildable;
  }
  

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy