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

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

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

import io.kubernetes.client.fluent.VisitableBuilder;
public class V1CSINodeSpecBuilder extends V1CSINodeSpecFluent implements VisitableBuilder{
  public V1CSINodeSpecBuilder() {
    this(new V1CSINodeSpec());
  }
  
  public V1CSINodeSpecBuilder(V1CSINodeSpecFluent fluent) {
    this(fluent, new V1CSINodeSpec());
  }
  
  public V1CSINodeSpecBuilder(V1CSINodeSpecFluent fluent,V1CSINodeSpec instance) {
    this.fluent = fluent;
    fluent.copyInstance(instance);
  }
  
  public V1CSINodeSpecBuilder(V1CSINodeSpec instance) {
    this.fluent = this;
    this.copyInstance(instance);
  }
  V1CSINodeSpecFluent fluent;
  
  public V1CSINodeSpec build() {
    V1CSINodeSpec buildable = new V1CSINodeSpec();
    buildable.setDrivers(fluent.buildDrivers());
    return buildable;
  }
  

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy