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

io.fabric8.openshift.api.model.machine.v1.ControlPlaneMachineSetSpecBuilder Maven / Gradle / Ivy

There is a newer version: 6.13.4
Show newest version
package io.fabric8.openshift.api.model.machine.v1;

import io.fabric8.kubernetes.api.builder.VisitableBuilder;
public class ControlPlaneMachineSetSpecBuilder extends ControlPlaneMachineSetSpecFluent implements VisitableBuilder{
  public ControlPlaneMachineSetSpecBuilder() {
    this(new ControlPlaneMachineSetSpec());
  }
  
  public ControlPlaneMachineSetSpecBuilder(ControlPlaneMachineSetSpecFluent fluent) {
    this(fluent, new ControlPlaneMachineSetSpec());
  }
  
  public ControlPlaneMachineSetSpecBuilder(ControlPlaneMachineSetSpecFluent fluent,ControlPlaneMachineSetSpec instance) {
    this.fluent = fluent;
    fluent.copyInstance(instance);
  }
  
  public ControlPlaneMachineSetSpecBuilder(ControlPlaneMachineSetSpec instance) {
    this.fluent = this;
    this.copyInstance(instance);
  }
  ControlPlaneMachineSetSpecFluent fluent;
  
  public ControlPlaneMachineSetSpec build() {
    ControlPlaneMachineSetSpec buildable = new ControlPlaneMachineSetSpec(fluent.getReplicas(),fluent.buildSelector(),fluent.getState(),fluent.buildStrategy(),fluent.buildTemplate());
    buildable.setAdditionalProperties(fluent.getAdditionalProperties());
    return buildable;
  }
  

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy