ResourceRequestsResponse

data class ResourceRequestsResponse(val cpu: Double, val memoryInGB: Double)

This type describes the requested resources for a given container. It describes the least amount of resources required for the container. A container can consume more than requested resources up to the specified limits before being restarted. Currently, the requested resources are treated as limits.

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val cpu: Double

Requested number of CPU cores. At present, only full cores are supported.

Link copied to clipboard

The memory request in GB for this container.