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

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

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

import java.util.List;

/**
 * Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.
 */
public class DownwardAPIProjection {
  public List items;

  /**
   * Items is a list of DownwardAPIVolume file
   */
  public DownwardAPIProjection items(List items) {
    this.items = items;
    return this;
  }

  public static DownwardAPIProjection downwardAPIProjection() {
    return new DownwardAPIProjection();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy