ResourceLimitsResponse

data class ResourceLimitsResponse(val cpu: Double? = null, val memoryInGB: Double? = null)

This type describes the resource limits for a given container. It describes the most amount of resources a container is allowed to use before being restarted.

Constructors

Link copied to clipboard
constructor(cpu: Double? = null, memoryInGB: Double? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val cpu: Double? = null

CPU limits in cores. At present, only full cores are supported.

Link copied to clipboard
val memoryInGB: Double? = null

The memory limit in GB.