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

io.k8s.api.flowcontrol.v1.FlowSchemaStatus Maven / Gradle / Ivy

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

import java.util.List;

/**
 * FlowSchemaStatus represents the current state of a FlowSchema.
 */
public class FlowSchemaStatus {
  public List conditions;

  /**
   * `conditions` is a list of the current states of FlowSchema.
   */
  public FlowSchemaStatus conditions(List conditions) {
    this.conditions = conditions;
    return this;
  }

  public static FlowSchemaStatus flowSchemaStatus() {
    return new FlowSchemaStatus();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy