io.k8s.api.flowcontrol.v1.FlowSchemaStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bl-k8s130 Show documentation
Show all versions of bl-k8s130 Show documentation
Programmatic resource management for Kubernetes
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();
}
}