MavenBuildCachePerformanceBuildCacheLocalInfo

data class MavenBuildCachePerformanceBuildCacheLocalInfo(@Json(name = "isEnabled") val isEnabled: Boolean, @Json(name = "isPushEnabled") val isPushEnabled: Boolean? = null, @Json(name = "isDisabledDueToError") val isDisabledDueToError: Boolean? = null, @Json(name = "directory") val directory: String? = null)

Information about the local build cache used in the build, if it is configured in the build. null if the local build cache is not configured.

Parameters

isEnabled

Indicates whether the local build cache is enabled.

isPushEnabled

Indicates whether pushing to the local build cache is enabled. null if the local build cache is disabled.

isDisabledDueToError

Indicates whether the local cache is disabled due to an error occurring in loading or storing local build cache entries. null if the local build cache is disabled.

directory

Location of the local build cache. Can be relative or absolute depending on its value. null if the local build cache is disabled.

Constructors

constructor(@Json(name = "isEnabled") isEnabled: Boolean, @Json(name = "isPushEnabled") isPushEnabled: Boolean? = null, @Json(name = "isDisabledDueToError") isDisabledDueToError: Boolean? = null, @Json(name = "directory") directory: String? = null)

Properties

Link copied to clipboard
val directory: String? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val isPushEnabled: Boolean? = null