Test Distribution Agent Pool Status
data class TestDistributionAgentPoolStatus(@Json(name = "id" ) val id: String, @Json(name = "name" ) val name: String, @Json(name = "minimumSize" ) val minimumSize: Int, @Json(name = "maximumSize" ) val maximumSize: Int, @Json(name = "connectedAgents" ) val connectedAgents: Int, @Json(name = "idleAgents" ) val idleAgents: Int, @Json(name = "desiredAgents" ) val desiredAgents: Int)
The status of an agent pool.
Parameters
id
The unique identifier of the agent pool.
name
The alias or display name of the agent pool.
minimum Size
maximum Size
connected Agents
idle Agents
desired Agents
Constructors
Link copied to clipboard
constructor(@Json(name = "id" ) id: String, @Json(name = "name" ) name: String, @Json(name = "minimumSize" ) minimumSize: Int, @Json(name = "maximumSize" ) maximumSize: Int, @Json(name = "connectedAgents" ) connectedAgents: Int, @Json(name = "idleAgents" ) idleAgents: Int, @Json(name = "desiredAgents" ) desiredAgents: Int)