DeviceAttributeArgs

data class DeviceAttributeArgs(val bool: Output<Boolean>? = null, val int: Output<Int>? = null, val string: Output<String>? = null, val version: Output<String>? = null) : ConvertibleToJava<DeviceAttributeArgs>

DeviceAttribute must have exactly one field set.

Constructors

Link copied to clipboard
constructor(bool: Output<Boolean>? = null, int: Output<Int>? = null, string: Output<String>? = null, version: Output<String>? = null)

Properties

Link copied to clipboard
val bool: Output<Boolean>? = null

BoolValue is a true/false value.

Link copied to clipboard
val int: Output<Int>? = null

IntValue is a number.

Link copied to clipboard
val string: Output<String>? = null

StringValue is a string. Must not be longer than 64 characters.

Link copied to clipboard
val version: Output<String>? = null

VersionValue is a semantic version according to semver.org spec 2.0.0. Must not be longer than 64 characters.

Functions

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