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

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

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

import java.lang.String;

/**
 * PodSchedulingGate is associated to a Pod to guard its scheduling.
 */
public class PodSchedulingGate {
  public String name;

  /**
   * Name of the scheduling gate. Each scheduling gate must have a unique name field.
   */
  public PodSchedulingGate name(String name) {
    this.name = name;
    return this;
  }

  public static PodSchedulingGate podSchedulingGate() {
    return new PodSchedulingGate();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy