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

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

There is a newer version: 1.30.4
Show newest version
package io.k8s.api.core.v1;

import java.lang.Boolean;

/**
 * NodeRuntimeHandlerFeatures is a set of runtime features.
 */
public class NodeRuntimeHandlerFeatures {
  public Boolean recursiveReadOnlyMounts;

  /**
   * RecursiveReadOnlyMounts is set to true if the runtime handler supports RecursiveReadOnlyMounts.
   */
  public NodeRuntimeHandlerFeatures recursiveReadOnlyMounts(Boolean recursiveReadOnlyMounts) {
    this.recursiveReadOnlyMounts = recursiveReadOnlyMounts;
    return this;
  }

  public static NodeRuntimeHandlerFeatures nodeRuntimeHandlerFeatures() {
    return new NodeRuntimeHandlerFeatures();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy