// Copyright 2020-2026 Project Capsule Authors // SPDX-License-Identifier: Apache-2.0 package api import ( "k8s.io/apimachinery/pkg/api/resource" ) // +kubebuilder:object:generate=true type PoolExhaustionResource struct { // Available Resources to be claimed // +optional Available resource.Quantity `json:"available,omitzero"` // Requesting Resources // +optional Requesting resource.Quantity `json:"requesting,omitzero"` }