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

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

package io.k8s.api.core.v1;

import java.lang.String;

/**
 * PodReadinessGate contains the reference to a pod condition
 */
public class PodReadinessGate {
  public String conditionType;

  /**
   * ConditionType refers to a condition in the pod's condition list with matching type.
   */
  public PodReadinessGate conditionType(String conditionType) {
    this.conditionType = conditionType;
    return this;
  }

  public static PodReadinessGate podReadinessGate() {
    return new PodReadinessGate();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy