PythonAttributes

constructor(@Json(name = "id") id: String, @Json(name = "buildStartTime") buildStartTime: Long, @Json(name = "buildDuration") buildDuration: Long, @Json(name = "pythonVersion") pythonVersion: String, @Json(name = "pythonAgentVersion") pythonAgentVersion: String, @Json(name = "command") command: List<String>, @Json(name = "links") links: List<BuildAttributesLink>, @Json(name = "tags") tags: List<String>, @Json(name = "values") propertyValues: List<BuildAttributesValue>, @Json(name = "exitCode") exitCode: Int? = null, @Json(name = "exception") exception: String? = null, @Json(name = "user") user: String? = null, @Json(name = "host") host: String? = null)

Parameters

id

The Build Scan ID.

buildStartTime

The time when the build starts, as milliseconds since Epoch.

buildDuration

The duration of the build, as milliseconds.

pythonVersion

The python version used in the build.

pythonAgentVersion

The version of the Develocity python agent.

command

The command and arguments requested in the build.

links

The list of Build Scan links.

tags

The list of Build Scan tags.

propertyValues

The list of Build Scan values.

exitCode

The exit code of the python process.

exception

The exception message thrown by the python process, if any.

user

The username of the user that ran the build.

host

The hostname of the user that ran the build, if set.