NodeDescription

@Serializable
data class NodeDescription(val hostname: String? = null, val platform: Platform? = null, val resources: ResourceObject? = null, val engine: EngineDescription? = null, val tlSInfo: TLSInfo? = null)

NodeDescription encapsulates the properties of the Node as reported by the agent.

Parameters

hostname
platform
resources
engine
tlSInfo

Constructors

Link copied to clipboard
constructor(hostname: String? = null, platform: Platform? = null, resources: ResourceObject? = null, engine: EngineDescription? = null, tlSInfo: TLSInfo? = null)

Properties

Link copied to clipboard
@SerialName(value = "Engine")
val engine: EngineDescription?
Link copied to clipboard
@SerialName(value = "Hostname")
val hostname: String?
Link copied to clipboard
@SerialName(value = "Platform")
val platform: Platform?
Link copied to clipboard
@SerialName(value = "Resources")
val resources: ResourceObject?
Link copied to clipboard
@SerialName(value = "TLSInfo")
val tlSInfo: TLSInfo?