SetDiscoverTargetsRequest

@Serializable
data class SetDiscoverTargetsRequest(val discover: Boolean, val filter: TargetFilter? = null)

Request object containing input parameters for the TargetDomain.setDiscoverTargets command.

Constructors

Link copied to clipboard
constructor(discover: Boolean, filter: TargetFilter? = null)

Types

Link copied to clipboard
class Builder(val discover: Boolean)

A builder for SetDiscoverTargetsRequest, which allows setting the optional parameters of the TargetDomain.setDiscoverTargets command via a lambda.

Properties

Link copied to clipboard

Whether to discover available targets.

Link copied to clipboard

Only targets matching filter will be attached. If discover is false, filter must be omitted or empty.