io.k8s.api.resource.v1alpha2.PodSchedulingContextStatus Maven / Gradle / Ivy
package io.k8s.api.resource.v1alpha2;
import java.util.List;
/**
* PodSchedulingContextStatus describes where resources for the Pod can be allocated.
*/
public class PodSchedulingContextStatus {
public List resourceClaims;
/**
* ResourceClaims describes resource availability for each pod.spec.resourceClaim entry where the corresponding ResourceClaim uses "WaitForFirstConsumer" allocation mode.
*/
public PodSchedulingContextStatus resourceClaims(
List resourceClaims) {
this.resourceClaims = resourceClaims;
return this;
}
public static PodSchedulingContextStatus podSchedulingContextStatus() {
return new PodSchedulingContextStatus();
}
}