ResourceQuotaStatusPatch

data class ResourceQuotaStatusPatch(val hard: Map<String, String>? = null, val used: Map<String, String>? = null)

ResourceQuotaStatus defines the enforced hard limits and observed use.

Constructors

Link copied to clipboard
constructor(hard: Map<String, String>? = null, used: Map<String, String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val hard: Map<String, String>? = null

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

Link copied to clipboard
val used: Map<String, String>? = null

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