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

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

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

import io.kubernetes.client.fluent.VisitableBuilder;
public class V1SleepActionBuilder extends V1SleepActionFluent implements VisitableBuilder{
  public V1SleepActionBuilder() {
    this(new V1SleepAction());
  }
  
  public V1SleepActionBuilder(V1SleepActionFluent fluent) {
    this(fluent, new V1SleepAction());
  }
  
  public V1SleepActionBuilder(V1SleepActionFluent fluent,V1SleepAction instance) {
    this.fluent = fluent;
    fluent.copyInstance(instance);
  }
  
  public V1SleepActionBuilder(V1SleepAction instance) {
    this.fluent = this;
    this.copyInstance(instance);
  }
  V1SleepActionFluent fluent;
  
  public V1SleepAction build() {
    V1SleepAction buildable = new V1SleepAction();
    buildable.setSeconds(fluent.getSeconds());
    return buildable;
  }
  

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy