Device

data class Device(val basic: BasicDevice? = null, val name: String)

Device represents one individual hardware instance that can be selected based on its attributes. Besides the name, exactly one field must be set.

Constructors

Link copied to clipboard
constructor(basic: BasicDevice? = null, name: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val basic: BasicDevice? = null

Basic defines one device instance.

Link copied to clipboard

Name is unique identifier among all devices managed by the driver in the pool. It must be a DNS label.