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

src.main.kotlin.com.gabrielfeo.develocity.api.model.ReplicationConfiguration.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

/**
 * Cached data replication configuration description. May be `null` if replication is not configured.
 *
 * @param source The name of the Build Cache Node which is the source of data.
 * @param preemptive Indicates if preemptive replication is enabled from the source.
 */


data class ReplicationConfiguration (

    /* The name of the Build Cache Node which is the source of data. */
    @Json(name = "source")
    val source: kotlin.String,

    /* Indicates if preemptive replication is enabled from the source. */
    @Json(name = "preemptive")
    val preemptive: kotlin.Boolean

) {


}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy