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

io.k8s.api.core.v1.Sysctl Maven / Gradle / Ivy

The newest version!
package io.k8s.api.core.v1;

import java.lang.String;

/**
 * Sysctl defines a kernel parameter to be set
 */
public class Sysctl {
  public String name;

  public String value;

  /**
   * Name of a property to set
   */
  public Sysctl name(String name) {
    this.name = name;
    return this;
  }

  /**
   * Value of a property to set
   */
  public Sysctl value(String value) {
    this.value = value;
    return this;
  }

  public static Sysctl sysctl() {
    return new Sysctl();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy