ResourceRequestsArgs

data class ResourceRequestsArgs(val cpu: Output<Double>, val gpu: Output<GpuResourceArgs>? = null, val memoryInGB: Output<Double>) : ConvertibleToJava<ResourceRequestsArgs>

The resource requests.

Constructors

Link copied to clipboard
constructor(cpu: Output<Double>, gpu: Output<GpuResourceArgs>? = null, memoryInGB: Output<Double>)

Properties

Link copied to clipboard
val cpu: Output<Double>

The CPU request of this container instance.

Link copied to clipboard
val gpu: Output<GpuResourceArgs>? = null

The GPU request of this container instance.

Link copied to clipboard
val memoryInGB: Output<Double>

The memory request in GB of this container instance.

Functions

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