ResourceQuotaArgs

data class ResourceQuotaArgs(val cpuLimit: Output<String>? = null, val cpuRequest: Output<String>? = null, val memoryLimit: Output<String>? = null, val memoryRequest: Output<String>? = null) : ConvertibleToJava<ResourceQuotaArgs>

Resource quota for the namespace.

Constructors

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

Properties

Link copied to clipboard
val cpuLimit: Output<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: Output<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: Output<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: Output<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.

Functions

Link copied to clipboard
open override fun toJava(): ResourceQuotaArgs