FleetComputeCapacity

data class FleetComputeCapacity(val available: Int? = null, val desiredInstances: Int, val inUse: Int? = null, val running: Int? = null)

Constructors

Link copied to clipboard
constructor(available: Int? = null, desiredInstances: Int, inUse: Int? = null, running: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val available: Int? = null

Number of currently available instances that can be used to stream sessions.

Link copied to clipboard

Desired number of streaming instances.

Link copied to clipboard
val inUse: Int? = null

Number of instances in use for streaming.

Link copied to clipboard
val running: Int? = null

Total number of simultaneous streaming instances that are running.