DeviceArgs

data class DeviceArgs(val basic: Output<BasicDeviceArgs>? = null, val name: Output<String>) : ConvertibleToJava<DeviceArgs>

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: Output<BasicDeviceArgs>? = null, name: Output<String>)

Properties

Link copied to clipboard
val basic: Output<BasicDeviceArgs>? = null

Basic defines one device instance.

Link copied to clipboard
val name: Output<String>

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

Functions

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