Package-level declarations

Types

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
data class Config(    val debugLoggingEnabled: Boolean = env["GRADLE_ENTERPRISE_API_DEBUG_LOGGING"].toBoolean(),     val apiUrl: String = env["GRADLE_ENTERPRISE_API_URL"] ?: error("GRADLE_ENTERPRISE_API_URL is required"),     val apiToken: () -> String = { requireEnvOrKeychainToken(debugLoggingEnabled = debugLoggingEnabled) },     val clientBuilder: OkHttpClient.Builder = basicOkHttpClient.newBuilder(),     val maxConcurrentRequests: Int? = env["GRADLE_ENTERPRISE_API_MAX_CONCURRENT_REQUESTS"]?.toInt(),     val readTimeoutMillis: Long = env["GRADLE_ENTERPRISE_API_READ_TIMEOUT_MILLIS"]?.toLong() ?: 60_000L,     val cacheConfig: Config.CacheConfig = CacheConfig())

Library configuration options.

Link copied to clipboard

Gradle Enterprise API client. API endpoints are grouped exactly as in the Gradle Enterprise API Manual:

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard