ResourceQuotaStatus

case
class ResourceQuotaStatus(hard: Optional[Map[String, Quantity]], used: Optional[Map[String, Quantity]])

ResourceQuotaStatus defines the enforced hard limits and observed use.

Value Params
hard

Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/

used

Used is the current observed total usage of the resource in the namespace.

Companion
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def getHard: IO[K8sFailure, Map[String, Quantity]]

Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/

Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/

If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

def getUsed: IO[K8sFailure, Map[String, Quantity]]

Used is the current observed total usage of the resource in the namespace.

Used is the current observed total usage of the resource in the namespace.

If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

Inherited methods

def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product