MavenBuildCachePerformanceBuildCacheRemoteInfo
data class MavenBuildCachePerformanceBuildCacheRemoteInfo( @Json(name = "isEnabled") val isEnabled: Boolean, @Json(name = "isPushEnabled") val isPushEnabled: Boolean? = null, @Json(name = "isDisabledDueToError") val isDisabledDueToError: Boolean? = null, @Json(name = "url") val url: String? = null)
Information about the remote build cache used in the build, if it is configured in the build. null
if the remote build cache is not configured.
Parameters
isEnabled
Indicates whether the remote build cache is enabled.
isPushEnabled
Indicates whether pushing to the remote build cache is enabled. null
if the remote build cache is disabled.
isDisabledDueToError
Indicates whether the remote build cache is disabled during the build due to an error occurring in loading or storing remote build cache entries. null
if the remote build cache is disabled.
url
URL of the remote build cache. null
if the remote build cache is disabled.