All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.main.kotlin.com.gabrielfeo.develocity.api.model.TestDistributionAgentPoolStatus.kt Maven / Gradle / Ivy

The newest version!
/**
 *
 * Please note:
 * This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * Do not edit this file manually.
 *
 */

@file:Suppress(
    "ArrayInDataClass",
    "EnumEntryName",
    "RemoveRedundantQualifierName",
    "UnusedImport"
)

package com.gabrielfeo.develocity.api.model


import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass

/**
 * The status of an agent pool.
 *
 * @param id The unique identifier of the agent pool.
 * @param name The alias or display name of the agent pool.
 * @param minimumSize 
 * @param maximumSize 
 * @param connectedAgents 
 * @param idleAgents 
 * @param desiredAgents 
 */


data class TestDistributionAgentPoolStatus (

    /* The unique identifier of the agent pool. */
    @Json(name = "id")
    val id: kotlin.String,

    /* The alias or display name of the agent pool. */
    @Json(name = "name")
    val name: kotlin.String,

    @Json(name = "minimumSize")
    val minimumSize: kotlin.Int,

    @Json(name = "maximumSize")
    val maximumSize: kotlin.Int,

    @Json(name = "connectedAgents")
    val connectedAgents: kotlin.Int,

    @Json(name = "idleAgents")
    val idleAgents: kotlin.Int,

    @Json(name = "desiredAgents")
    val desiredAgents: kotlin.Int

) {


}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy