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

io.fabric8.openshift.api.model.machine.v1.ControlPlaneMachineSetStatusBuilder 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 ControlPlaneMachineSetStatusBuilder extends ControlPlaneMachineSetStatusFluent implements VisitableBuilder{
  public ControlPlaneMachineSetStatusBuilder() {
    this(new ControlPlaneMachineSetStatus());
  }
  
  public ControlPlaneMachineSetStatusBuilder(ControlPlaneMachineSetStatusFluent fluent) {
    this(fluent, new ControlPlaneMachineSetStatus());
  }
  
  public ControlPlaneMachineSetStatusBuilder(ControlPlaneMachineSetStatusFluent fluent,ControlPlaneMachineSetStatus instance) {
    this.fluent = fluent;
    fluent.copyInstance(instance);
  }
  
  public ControlPlaneMachineSetStatusBuilder(ControlPlaneMachineSetStatus instance) {
    this.fluent = this;
    this.copyInstance(instance);
  }
  ControlPlaneMachineSetStatusFluent fluent;
  
  public ControlPlaneMachineSetStatus build() {
    ControlPlaneMachineSetStatus buildable = new ControlPlaneMachineSetStatus(fluent.getConditions(),fluent.getObservedGeneration(),fluent.getReadyReplicas(),fluent.getReplicas(),fluent.getUnavailableReplicas(),fluent.getUpdatedReplicas());
    buildable.setAdditionalProperties(fluent.getAdditionalProperties());
    return buildable;
  }
  

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy