getMavenDependencyCaching

@GET(value = "api/builds/{id}/maven-dependency-caching")
abstract suspend fun getMavenDependencyCaching(@Path(value = "id") id: String, @Query(value = "availabilityWaitTimeoutSecs") availabilityWaitTimeoutSecs: Int? = null): MavenDependencyCaching

GET api/builds/{id}/maven-dependency-caching Get dependency caching metrics of a Maven build. This model is Maven specific and cannot be requested for another build tool. This model is only available starting with Maven version 3.3.1 and Develocity Maven Extension version 2.4. Responses:

  • 200: Dependency caching metrics of a Maven build.

  • 400: The request cannot be fulfilled due to a problem.

  • 404: The referenced resource either does not exist or the permissions to know about it are missing.

  • 500: The server encountered an unexpected error.

  • 503: The server is not ready to handle the request.

Return

MavenDependencyCaching

Parameters

id

The Build Scan ID.

availabilityWaitTimeoutSecs

The time in seconds the server should wait for ingestion before returning a wait timeout response. (optional)