ResourceQuotaResponse

data class ResourceQuotaResponse(val cpuLimit: String? = null, val cpuRequest: String? = null, val memoryLimit: String? = null, val memoryRequest: String? = null)

Resource quota for the namespace.

Constructors

Link copied to clipboard
constructor(cpuLimit: String? = null, cpuRequest: String? = null, memoryLimit: String? = null, memoryRequest: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val cpuLimit: String? = null

CPU limit of the namespace in one-thousandth CPU form. See CPU resource units for more details.

Link copied to clipboard
val cpuRequest: String? = null

CPU request of the namespace in one-thousandth CPU form. See CPU resource units for more details.

Link copied to clipboard
val memoryLimit: String? = null

Memory limit of the namespace in the power-of-two equivalents form: Ei, Pi, Ti, Gi, Mi, Ki. See Memory resource units for more details.

Link copied to clipboard
val memoryRequest: String? = null

Memory request of the namespace in the power-of-two equivalents form: Ei, Pi, Ti, Gi, Mi, Ki. See Memory resource units for more details.